From aa251997f351b268c0e0a18e7344e7f5fc8f0519 Mon Sep 17 00:00:00 2001 From: Vanessa Dannenberg Date: Fri, 21 Sep 2018 17:08:02 -0400 Subject: [PATCH] change references like "MineGeld" and "Mine-Geld" to "Minegeld" also minor doc fixes --- Money_Info.txt | 2 +- craftitems.lua | 8 ++++---- description.txt | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Money_Info.txt b/Money_Info.txt index 722d2b9..5c86ac2 100644 --- a/Money_Info.txt +++ b/Money_Info.txt @@ -1,4 +1,4 @@ -Mine-Geld +Minegeld --------- They have no recipe. diff --git a/craftitems.lua b/craftitems.lua index 521195f..ca8a4e5 100644 --- a/craftitems.lua +++ b/craftitems.lua @@ -3,28 +3,28 @@ local MP = minetest.get_modpath(minetest.get_current_modname()) local S, NS = dofile(MP.."/intllib.lua") minetest.register_craftitem("currency:minegeld", { - description = S("1 MineGeld Note"), + description = S("1 Minegeld Note"), inventory_image = "minegeld.png", stack_max = 30000, groups = {minegeld = 1} }) minetest.register_craftitem("currency:minegeld_5", { - description = S("5 MineGeld Note"), + description = S("5 Minegeld Note"), inventory_image = "minegeld_5.png", stack_max = 30000, groups = {minegeld = 1} }) minetest.register_craftitem("currency:minegeld_10", { - description = S("10 MineGeld Note"), + description = S("10 Minegeld Note"), inventory_image = "minegeld_10.png", stack_max = 30000, groups = {minegeld = 1} }) minetest.register_craftitem("currency:minegeld_50", { - description = S("50 MineGeld Note"), + description = S("50 Minegeld Note"), inventory_image = "minegeld_50.png", stack_max = 30000, groups = {minegeld = 1} diff --git a/description.txt b/description.txt index aca9890..74cf4fe 100644 --- a/description.txt +++ b/description.txt @@ -1 +1 @@ -Provides shops, barter tables, safes, and three denominations of currency, called "Minegeld". +Provides shops, barter tables, safes, and four denominations of currency, called "Minegeld".