switched back to get/set_look_yaw/pitch for older clients

This commit is contained in:
TenPlus1 2016-08-16 21:14:48 +01:00
parent e0546a868b
commit 0750ffd6fb
1 changed files with 6 additions and 3 deletions

View File

@ -252,16 +252,19 @@ function minetest.is_protected(pos, digger)
and player then
-- yaw + 180°
local yaw = player:get_look_horizontal() + math.pi
--local yaw = player:get_look_horizontal() + math.pi
local yaw = player:get_look_yaw() + math.pi
if yaw > 2 * math.pi then
yaw = yaw - 2 * math.pi
end
player:set_look_horizontal(yaw)
--player:set_look_horizontal(yaw)
player:set_look_yaw(yaw)
-- invert pitch
player:set_look_vertical(-player:get_look_vertical())
--player:set_look_vertical(-player:get_look_vertical())
player:set_look_pitch(-player:get_look_pitch())
-- if digging below player, move up to avoid falling through hole
local pla_pos = player:getpos()