Sleep takes 5 seconds instead of 2

This commit is contained in:
Wuzzy 2018-01-08 03:44:06 +01:00
parent a46064bd92
commit f5010ec32a
1 changed files with 1 additions and 1 deletions

View File

@ -242,7 +242,7 @@ function mcl_beds.on_rightclick(pos, player)
-- skip the night and let all players stand up
if check_in_beds() then
minetest.after(2, function()
minetest.after(5, function()
if not is_sp then
update_formspecs(is_night_skip_enabled())
end