From 90fde974a2e985cd732cb5c6491266b325b3924e Mon Sep 17 00:00:00 2001 From: GloopMaster Date: Fri, 5 Jul 2013 16:57:17 -0400 Subject: [PATCH] Mese and Diamond ore description consistancy. Merely creates consistancy in the in-game naming of the ores. --- mods/default/nodes.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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},