From: GloopMaster Date: Fri, 5 Jul 2013 20:57:17 +0000 (-0400) Subject: Mese and Diamond ore description consistancy. X-Git-Tag: 0.4.8~23 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=90fde974a2e985cd732cb5c6491266b325b3924e;p=oweals%2Fminetest_game.git Mese and Diamond ore description consistancy. Merely creates consistancy in the in-game naming of the ores. --- diff --git a/mods/default/nodes.lua b/mods/default/nodes.lua index a05d98b1..89ef5f95 100644 --- a/mods/default/nodes.lua +++ b/mods/default/nodes.lua @@ -48,7 +48,7 @@ minetest.register_node("default:stone_with_copper", { }) minetest.register_node("default:stone_with_mese", { - description = "Mese Crystals in Stone", + description = "Mese Ore", tiles = {"default_stone.png^default_mineral_mese.png"}, is_ground_content = true, groups = {cracky=1}, @@ -66,7 +66,7 @@ minetest.register_node("default:stone_with_gold", { }) minetest.register_node("default:stone_with_diamond", { - description = "Diamonds in Stone", + description = "Diamond Ore", tiles = {"default_stone.png^default_mineral_diamond.png"}, is_ground_content = true, groups = {cracky=1},