Fix stuck player if server shuts down during sleep

This commit is contained in:
Wuzzy 2019-02-20 18:17:44 +01:00
parent f18b1bd52a
commit 0cc8962258
1 changed files with 3 additions and 0 deletions

View File

@ -318,8 +318,11 @@ end
-- Callbacks
minetest.register_on_joinplayer(function(player)
if player:get_attribute("mcl_beds:sleeping") == "true" then
-- Make player awake on joining server
player:set_attribute("mcl_beds:sleeping", "false")
end
playerphysics.remove_physics_factor(player, "speed", "mcl_beds:sleeping")
playerphysics.remove_physics_factor(player, "jump", "mcl_beds:sleeping")
end)
minetest.register_on_leaveplayer(function(player)