Ajoute certaines modifications venant de MFF + ajustement HUD

* Aires openfarming
* Privilège megabuilder
* HUD légèrement modifié pour laisser de la place à celui de factions
This commit is contained in:
2019-12-28 02:43:12 +01:00
parent aca830fd22
commit feae9967dc
4 changed files with 77 additions and 24 deletions

View File

@ -26,7 +26,7 @@ minetest.register_globalstep(function(dtime)
area.faction_open = faction_info
table.insert(areaStrings, ("%s [%u] (%s%s%s)")
:format(area.name, id, area.owner,
area.open and ":open" or "",
area.open and ":open" or area.openfarming and ":openfarming" or "",
faction_info and ":"..faction_info or ""))
end
@ -52,7 +52,7 @@ minetest.register_globalstep(function(dtime)
name = "Areas",
number = 0xFFFFFF,
position = {x=0, y=1},
offset = {x=8, y=-8},
offset = {x=8, y=-24},
text = areaString,
scale = {x=200, y=60},
alignment = {x=1, y=-1},