From 2d05ae5b7d76128f423b05e36ba9171c9769d937 Mon Sep 17 00:00:00 2001 From: Sokomine Date: Mon, 27 Jul 2015 17:32:49 +0200 Subject: added option to override the textures of the npc chests --- nodes_chests.lua | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'nodes_chests.lua') diff --git a/nodes_chests.lua b/nodes_chests.lua index 7a6db1c..a1256c9 100644 --- a/nodes_chests.lua +++ b/nodes_chests.lua @@ -31,8 +31,7 @@ cottages_chests.can_dig = function(pos,player) minetest.register_node("cottages:chest_private", { description = S("private NPC chest"), infotext = "chest containing the possesions of one of the inhabitants", - tiles = {"default_chest_top.png", "default_chest_top.png", "default_chest_side.png", - "default_chest_side.png", "default_chest_side.png", "default_chest_front.png"}, + tiles = cottages.texture_chest, paramtype2 = "facedir", groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, legacy_facedir_simple = true, @@ -44,8 +43,7 @@ minetest.register_node("cottages:chest_private", { minetest.register_node("cottages:chest_work", { description = S("chest for work utils and kitchens"), infotext = "everything the inhabitant needs for his work", - tiles = {"default_chest_top.png", "default_chest_top.png", "default_chest_side.png", - "default_chest_side.png", "default_chest_side.png", "default_chest_front.png"}, + tiles = cottages.texture_chest, paramtype2 = "facedir", groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, legacy_facedir_simple = true, @@ -57,8 +55,7 @@ minetest.register_node("cottages:chest_work", { minetest.register_node("cottages:chest_storage", { description = S("storage chest"), infotext = "stored food reserves", - tiles = {"default_chest_top.png", "default_chest_top.png", "default_chest_side.png", - "default_chest_side.png", "default_chest_side.png", "default_chest_front.png"}, + tiles = cottages.texture_chest, paramtype2 = "facedir", groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, legacy_facedir_simple = true, -- cgit v1.2.3