Tweak HUD area list display

This commit is contained in:
ShadowNinja 2014-03-30 13:53:56 -04:00
parent ce8891a325
commit 6f31a56594
1 changed files with 3 additions and 6 deletions

View File

@ -6,7 +6,6 @@ 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 a = areas:getAreasAtPos(pos)
local areaString = ""
local first = true
for id, area in pairs(areas:getAreasAtPos(pos)) do
@ -15,11 +14,9 @@ minetest.register_globalstep(function(dtime)
else
first = false
end
local ownertxt = area.owner
if area.open then
ownertxt = ownertxt.."/open"
end
areaString = areaString..id.." ("..ownertxt..")"
areaString = areaString .. ("%s [%u] (%s%s)")
:format(area.name, id, area.owner,
area.open and ":open" or "")
end
if not areas.hud[name] then
areas.hud[name] = {}