modpol/modpol_minetest/orgs/instance.lua
Luke Miller 70b1c4d7d2 bug fix
2021-04-15 00:30:55 -04:00

7 lines
200 B
Lua

--add members to the instance, if they are not already there.
minetest.register_on_joinplayer(function(player)
local p_name = player:get_player_name()
modpol.instance:add_member(p_name)
end)