Revert "Fix possible hud vector error"

This was fixed upstream in builtin.
This reverts commit 1a8efa9916.
This commit is contained in:
ShadowNinja 2013-11-18 21:04:14 -05:00
parent f096fb4dbb
commit 38dc65eb8e
1 changed files with 23 additions and 26 deletions

View File

@ -5,9 +5,7 @@ areas.hud = {}
minetest.register_globalstep(function(dtime)
for _, player in pairs(minetest.get_connected_players()) do
local name = player:get_player_name()
local pos = player:getpos()
if pos then
pos = vector.round(pos)
local pos = vector.round(player:getpos())
local owners = areas:getNodeOwners(pos)
local ownerString = table.concat(owners, ", ")
if not areas.hud[name] then
@ -32,7 +30,6 @@ minetest.register_globalstep(function(dtime)
areas.hud[name].oldOwners = ownerString
end
end
end
end)
minetest.register_on_leaveplayer(function(player)