Remove minimap; closes #29

This commit is contained in:
KaadmY 2017-05-10 10:20:40 -07:00
parent d24cd2146e
commit 9c8abac706
1 changed files with 18 additions and 15 deletions

View File

@ -100,12 +100,15 @@ local function on_joinplayer(player)
player_health[name] = player:get_hp()
-- uncomment to enable player-on-player collisions
-- player:set_properties({physical = true})
-- uncomment to enable player-on-player collisions
-- player:set_properties({physical = true})
-- uncomment to disable the sneak glitch
player:set_physics_override({sneak_glitch = false})
-- uncomment to disable the minimap
player:hud_set_flags({minimap = false})
player_lastpos[name] = player:getpos()
end