mirror of
https://github.com/minetest-mods/areas.git
synced 2025-06-30 15:10:28 +02:00
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:
4
hud.lua
4
hud.lua
@ -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},
|
||||
|
Reference in New Issue
Block a user