From e1d53d0ce6238142dcef02da3b20f17fb2231dc1 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Wed, 15 Apr 2020 15:26:53 +0200 Subject: [PATCH] Disambiguate some ore descriptions --- mods/ores/registration.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/mods/ores/registration.lua b/mods/ores/registration.lua index f1a28db..1621ceb 100644 --- a/mods/ores/registration.lua +++ b/mods/ores/registration.lua @@ -42,8 +42,12 @@ function realtest.register_ore(name, OreDef) else wherein_textures = {name_..".png"} end + local str_in = "" + if wherein == "default:desert_stone" then + str_in = " in Desert Stone" + end minetest.register_node(":"..name.."_in_"..wherein_, { - description = ore.description .. " Ore", + description = ore.description .. " Ore" .. str_in, tiles = wherein_textures, particle_image = {ore.particle_image}, groups = {cracky=3,drop_on_dig=1,ore=1,dropping_like_stone=1},