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.
master
Vanessa Dannenberg 2018-09-21 18:16:15 -04:00
parent 63384c516a
commit 695e41990d
1 changed files with 3 additions and 3 deletions

View File

@ -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}
})