From 695e41990dfed8684053644aa4afa929d854506c Mon Sep 17 00:00:00 2001 From: Vanessa Dannenberg Date: Fri, 21 Sep 2018 18:16:15 -0400 Subject: [PATCH] adjust stack max for coins based on the notion that since one US nickel weighs exactly 5 grams, and 1 Minegeld cent equals 1 US cent, thus 1000 5-cent Mg coins would be 5 kg. Still a huge amount to carry :-) but not unreasonable. --- craftitems.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/craftitems.lua b/craftitems.lua index f037b3a..233bd0a 100644 --- a/craftitems.lua +++ b/craftitems.lua @@ -5,21 +5,21 @@ local S, NS = dofile(MP.."/intllib.lua") minetest.register_craftitem("currency:minegeld_cent_5", { description = S("5 Minegeld cent coin"), inventory_image = "minegeld_cent_5.png", - stack_max = 30000, + stack_max = 1000, groups = {minegeld = 1} }) minetest.register_craftitem("currency:minegeld_cent_10", { description = S("10 Minegeld cent coin"), inventory_image = "minegeld_cent_10.png", - stack_max = 30000, + stack_max = 1000, groups = {minegeld = 1} }) minetest.register_craftitem("currency:minegeld_cent_25", { description = S("25 Minegeld cent coin"), inventory_image = "minegeld_cent_25.png", - stack_max = 30000, + stack_max = 1000, groups = {minegeld = 1} })