From b27b7be674a46bfaf1d45997e0aa473d12f3ce22 Mon Sep 17 00:00:00 2001 From: FaceDeer Date: Thu, 21 Sep 2017 00:49:24 -0600 Subject: [PATCH] Meaningful descriptions for ABM placement nodes --- nodes.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nodes.lua b/nodes.lua index 2256727..c487428 100644 --- a/nodes.lua +++ b/nodes.lua @@ -526,7 +526,7 @@ minetest.register_alias("caverealms:constant_flame", "fire:permanent_flame") --node to create a treasure chest in DM Forts. minetest.register_node("caverealms:s_chest", { - description = "Trying to rob the bank before it's opened, eh?", + description = "Treasure chest placement block", tiles = {"default_chest_front.png"}, paramtype2 = "facedir", groups = {choppy=3,oddly_breakable_by_hand=2,cavechest=1, not_in_creative_inventory=1}, @@ -540,7 +540,7 @@ minetest.register_node("caverealms:s_chest", { --hacky schematic placers minetest.register_node("caverealms:s_fountain", { - description = "A Hack like you should know what this does...", + description = "Fountain placement block", tiles = {"caverealms_stone_eyes.png"}, groups = {crumbly=3, schema=1, not_in_creative_inventory=1}, after_dig_node = function(pos, oldnode, oldmetadata, digger) @@ -551,7 +551,7 @@ minetest.register_node("caverealms:s_fountain", { }) minetest.register_node("caverealms:s_fortress", { - description = "A Hack like you should know what this does...", + description = "Fortress placement block", tiles = {"caverealms_stone_eyes.png"}, groups = {crumbly=3, schema=1, not_in_creative_inventory=1}, after_dig_node = function(pos, oldnode, oldmetadata, digger)