From abef71f317009fc0715b470351f20eb1143fec75 Mon Sep 17 00:00:00 2001 From: kay27 Date: Wed, 14 Oct 2020 03:19:00 +0400 Subject: [PATCH] Fix https://git.minetest.land/Wuzzy/MineClone2/issues/840 --- mods/ITEMS/mcl_beds/functions.lua | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/mods/ITEMS/mcl_beds/functions.lua b/mods/ITEMS/mcl_beds/functions.lua index d7bf13bc8..20ac848dc 100644 --- a/mods/ITEMS/mcl_beds/functions.lua +++ b/mods/ITEMS/mcl_beds/functions.lua @@ -138,7 +138,7 @@ local function lay_down(player, pos, bed_pos, state, skip) -- physics, eye_offset, etc player:set_eye_offset({x = 0, y = 0, z = 0}, {x = 0, y = 0, z = 0}) if player:get_look_vertical() > 0 then - player:set_look_vertical(0) -- this doesn't work :( + player:set_look_vertical(0) end mcl_player.player_attached[name] = false playerphysics.remove_physics_factor(player, "speed", "mcl_beds:sleeping") @@ -189,7 +189,11 @@ local function lay_down(player, pos, bed_pos, state, skip) -- physics, eye_offset, etc player:set_eye_offset({x = 0, y = -13, z = 0}, {x = 0, y = 0, z = 0}) player:set_look_horizontal(yaw) - player:set_look_vertical(-(math.pi/2)) + + -- With head tracking: + player:set_look_vertical(0) + -- Without head tracking: + -- player:set_look_vertical(-(math.pi/2)) player:get_meta():set_string("mcl_beds:sleeping", "true") playerphysics.add_physics_factor(player, "speed", "mcl_beds:sleeping", 0)