Skip to content

Commit b292975

Browse files
beyondlimitsparamat
authored andcommittedOct 19, 2015
Use PI variable rather than unclear constant
1 parent 3fb6ee5 commit b292975

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed
 

‎mods/beds/functions.lua

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
local pi = math.pi
12
local player_in_bed = 0
23
local is_sp = minetest.is_singleplayer()
34
local enable_respawn = minetest.setting_getbool("enable_bed_respawn")
@@ -11,13 +12,13 @@ end
1112
local function get_look_yaw(pos)
1213
local n = minetest.get_node(pos)
1314
if n.param2 == 1 then
14-
return 7.9, n.param2
15+
return pi/2, n.param2
1516
elseif n.param2 == 3 then
16-
return 4.75, n.param2
17+
return -pi/2, n.param2
1718
elseif n.param2 == 0 then
18-
return 3.15, n.param2
19+
return pi, n.param2
1920
else
20-
return 6.28, n.param2
21+
return 0, n.param2
2122
end
2223
end
2324

0 commit comments

Comments
 (0)
Please sign in to comment.