Replace deprecated functions with newer ones (#36)

This commit replaces a few deprecated calls to getpos with get_pos
This commit is contained in:
Panquesito7
2019-07-10 13:26:42 -05:00
committed by SmallJoker
parent 6218e5884d
commit 5527dc8945
3 changed files with 4 additions and 4 deletions

View File

@ -14,7 +14,7 @@ minetest.register_globalstep(function(dtime)
for _, player in pairs(minetest.get_connected_players()) do
local name = player:get_player_name()
local pos = vector.round(player:getpos())
local pos = vector.round(player:get_pos())
pos = vector.apply(pos, function(p)
return math.max(math.min(p, 2147483), -2147483)
end)