From b5ef3d0e7f780c695d9ec0de921d99feef3b4691 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Thu, 10 Nov 2016 14:51:40 +0100 Subject: [PATCH] Clean up descriptions --- nodes.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/nodes.lua b/nodes.lua index 9a22ebb..1388007 100644 --- a/nodes.lua +++ b/nodes.lua @@ -1,8 +1,9 @@ +local desc = {"Sandstone with eye", "Sandstone with man", "Sandstone with sun"} local img = {"eye", "men", "sun"} for i=1,3 do minetest.register_node("tsm_pyramids:deco_stone"..i, { - description = "Sandstone with "..img[i], + description = desc[i], tiles = {"default_sandstone.png^tsm_pyramids_"..img[i]..".png"}, is_ground_content = false, groups = {crumbly=2,cracky=3}, @@ -39,7 +40,7 @@ minetest.register_node("tsm_pyramids:trap", { }) minetest.register_node("tsm_pyramids:trap_2", { - description = "trapstone", + description = "Trap sandstone", tiles = {"default_sandstone_brick.png^tsm_pyramids_crack.png^[transformR90"}, is_ground_content = false, groups = {crumbly=2,cracky=3,falling_node=1,not_in_creative_inventory=1},