Velocity check adjusted in mcl_beds

This commit is contained in:
kay27 2020-07-27 01:12:10 +04:00 committed by Wuzzy
parent c78270e70b
commit 7d1f8ac314
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ local function lay_down(player, pos, bed_pos, state, skip)
end
-- No sleeping while moving. Slightly different behaviour than in MC.
if vector.length(player:get_player_velocity()) > 0.001 then
if vector.length(player:get_player_velocity()) > 0.125 then
minetest.chat_send_player(name, S("You have to stop moving before going to bed!"))
return false
end