Files
modpol/modpol_minetest/orgs/instance.lua
T

7 lines
200 B
Lua
Raw Normal View History

--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)
end)