From 0f3e04412cabc1d297f21f52f7d6b4adce66bc05 Mon Sep 17 00:00:00 2001 From: Vanessa Dannenberg Date: Fri, 21 Sep 2018 17:59:56 -0400 Subject: [PATCH] raise daily income to 10 Mg --- Money_Info.txt | 2 +- income.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Money_Info.txt b/Money_Info.txt index 69aa842..44bc81f 100644 --- a/Money_Info.txt +++ b/Money_Info.txt @@ -7,7 +7,7 @@ In general, one Mg equals one US dollar, as of Sept. 2018. A good starting amount is about 250Mg on a server -You currently get a basic income of 1 Minegeld per day, +You currently get a basic income of 10 Minegeld per day, so long as you dig at least one node in that day and have an empty inventory slot for the money to go in. diff --git a/income.lua b/income.lua index cbbd5d8..761a871 100644 --- a/income.lua +++ b/income.lua @@ -29,7 +29,7 @@ earn_income = function(player) if players_income[name] > 0 then count = players_income[name] local inv = player:get_inventory() - inv:add_item("main", {name="currency:minegeld_5", count=count}) + inv:add_item("main", {name="currency:minegeld_10", count=count}) players_income[name] = 0 minetest.log("info", "[Currency] "..S("added basic income for @1 to inventory", name)) end