fixed modulo

This commit is contained in:
VorTechnix 2021-02-24 09:08:49 -08:00
parent 489d856176
commit 191f1385b1
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
function worldeditadditions.player_axis2d(name)
-- minetest.get_player_by_name("singleplayer"):
local dir = math.floor(minetest.get_player_by_name(name):get_look_horizontal() / math.pi * 2 + 0.5) % 3
local dir = math.floor(minetest.get_player_by_name(name):get_look_horizontal() / math.pi * 2 + 0.5) % 4
local crdnl = { {1,"z"},{-1,"x"},{-1,"z"},{1,"x"} }
return crdnl[dir+1]
end