This commit is contained in:
unknown 2021-11-27 19:56:36 -05:00
parent f1dc68ab21
commit f6f6f3a3c3
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ local update_item = function(pos, node)
local e = minetest.add_entity(pos,"itemframes:item")
if node.name == "itemframes:frame" then
local yaw = math.pi * 2 - node.param2 * math.pi / 2
e:setyaw(yaw)
e:set_yaw(yaw)
end
end
end