From fc796b4865494bb7f7f4e4662276c498d525091b Mon Sep 17 00:00:00 2001 From: NathanSalapat Date: Fri, 8 Sep 2017 20:46:20 -0500 Subject: [PATCH] improved node descriptions. --- init.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/init.lua b/init.lua index dce5092..5968a2c 100644 --- a/init.lua +++ b/init.lua @@ -17,9 +17,9 @@ formspec_owner = 'list[current_player;main;0,3;8,4;]' minetest.register_node('autostore:store_1', { - description = 'store', + description = 'Unconfigured Store', tiles = {'autostore_top.png', 'autostore_side.png', 'autostore_side.png', 'autostore_side.png', 'autostore_side.png', 'autostore_off.png'}, - groups = {oddly_breakable_by_hand=3, choppy=2, not_in_creative_inventory=1}, + groups = {oddly_breakable_by_hand=3, choppy=2}, paramtype = 'light', paramtype2 = 'facedir', @@ -88,9 +88,9 @@ minetest.register_node('autostore:store_1', { }) minetest.register_node('autostore:store', { - description = 'store', + description = 'Configured Store (Something Broke)', tiles = {'autostore_top.png', 'autostore_side.png', 'autostore_side.png', 'autostore_side.png', 'autostore_side.png', 'autostore_front.png'}, - groups = {oddly_breakable_by_hand=3, choppy=2}, + groups = {oddly_breakable_by_hand=3, choppy=2, not_in_creative_inventory=1}, paramtype = 'light', paramtype2 = 'facedir', drop = 'autostore:store_1',