13 lines
399 B
Lua
13 lines
399 B
Lua
|
|
--basic cleanup
|
|
|
|
arena_lib.on_disconnect('wormball', function(arena, p_name)
|
|
local player = minetest.get_player_by_name(p_name)
|
|
if player and not(arena_lib.is_player_spectating(p_name)) then
|
|
player:set_properties({textures = wormball.player_texture_save[p_name]})
|
|
local att = player:get_attach()
|
|
player:set_detach()
|
|
if att then att:remove() end
|
|
end
|
|
|
|
end) |