summaryrefslogtreecommitdiff
path: root/hud.lua
diff options
context:
space:
mode:
authorTenPlus1 <kinsellaja@yahoo.com>2018-01-04 11:23:41 +0000
committerTenPlus1 <kinsellaja@yahoo.com>2018-01-04 11:23:41 +0000
commit4771c1f199af280f74a3821fe670f68ed344998f (patch)
treeaaf20149aa958d2203051176811b1b47178e6dc2 /hud.lua
parent974a024171529ec14d08e5d6b87bb995627a978f (diff)
changed hud text, added russian locale
Diffstat (limited to 'hud.lua')
-rw-r--r--hud.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/hud.lua b/hud.lua
index cbf1bd2..041104b 100644
--- a/hud.lua
+++ b/hud.lua
@@ -15,7 +15,7 @@ minetest.register_globalstep(function(dtime)
local name = player:get_player_name()
local pos = vector.round(player:getpos())
- local hud_text = "You can build here"
+ local hud_text = ""
local protectors = minetest.find_nodes_in_area(
{x=pos.x -radius , y=pos.y -radius , z=pos.z -radius},
@@ -27,7 +27,7 @@ minetest.register_globalstep(function(dtime)
local meta = minetest.get_meta(npos)
local nodeowner = meta:get_string("owner")
- hud_text = "Owned by: " .. nodeowner
+ hud_text = "Owner: " .. nodeowner
end
if not hud[name] then