Merge pull request #8 from AntumDeluge/master

Replace deprecated call to 'get_look_yaw' with 'get_look_horizontal'
This commit is contained in:
Vanessa Ezekowitz 2017-05-18 05:44:31 -04:00 committed by GitHub
commit 83261d5db4
1 changed files with 2 additions and 2 deletions

View File

@ -207,7 +207,7 @@ end)
function unifieddyes.fix_rotation(pos, placer, itemstack, pointed_thing)
local node = minetest.get_node(pos)
local yaw = placer:get_look_yaw()
local yaw = placer:get_look_horizontal()
local dir = minetest.yaw_to_dir(yaw-1.5)
local pitch = placer:get_look_vertical()
@ -226,7 +226,7 @@ end
function unifieddyes.fix_rotation_nsew(pos, placer, itemstack, pointed_thing)
local node = minetest.get_node(pos)
local yaw = placer:get_look_yaw()
local yaw = placer:get_look_horizontal()
local dir = minetest.yaw_to_dir(yaw)
local fdir = minetest.dir_to_wallmounted(dir)
minetest.swap_node(pos, { name = node.name, param2 = fdir })