aboutsummaryrefslogtreecommitdiff
path: root/income.lua
diff options
context:
space:
mode:
authorFaceDeer <derksenmobile@gmail.com>2017-02-20 14:01:45 -0700
committerFaceDeer <derksenmobile@gmail.com>2017-02-20 14:01:45 -0700
commit215a33ee9afa9726e7af5b96f03d642807014c60 (patch)
tree64f4e2f79d501239cf5f96f8a1c3a7a140e7c3bc /income.lua
parentf6c00b5e20ee7471f1b07e5f759310264129aa6e (diff)
downloadcurrency-215a33ee9afa9726e7af5b96f03d642807014c60.tar.gz
currency-215a33ee9afa9726e7af5b96f03d642807014c60.tar.bz2
currency-215a33ee9afa9726e7af5b96f03d642807014c60.zip
requested localization changes
Diffstat (limited to 'income.lua')
-rw-r--r--income.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/income.lua b/income.lua
index e2146d0..cbbd5d8 100644
--- a/income.lua
+++ b/income.lua
@@ -15,7 +15,7 @@ minetest.register_globalstep(function(dtime)
players_income[name] = 0
end
players_income[name] = 1
- minetest.log("info", S("[Currency] basic income for @1", name))
+ minetest.log("info", "[Currency] "..S("basic income for @1", name))
end
end
end)
@@ -31,7 +31,7 @@ earn_income = function(player)
local inv = player:get_inventory()
inv:add_item("main", {name="currency:minegeld_5", count=count})
players_income[name] = 0
- minetest.log("info", S("[Currency] added basic income for @1 to inventory", name))
+ minetest.log("info", "[Currency] "..S("added basic income for @1 to inventory", name))
end
end