2021-02-10 23:40:28 -05:00
|
|
|
--add members to the instance, if they are not already there.
|
|
|
|
|
|
|
|
|
|
minetest.register_on_joinplayer(function(player)
|
|
|
|
|
local p_name = player:get_player_name()
|
2021-04-15 00:30:55 -04:00
|
|
|
modpol.instance:add_member(p_name)
|
2021-03-15 18:08:06 -06:00
|
|
|
end)
|