diff options
author | Sokomine <wegwerf@anarres.dyndns.org> | 2015-07-26 03:03:57 +0200 |
---|---|---|
committer | Sokomine <wegwerf@anarres.dyndns.org> | 2015-07-26 03:03:57 +0200 |
commit | d92685d20c6bebce0a88512991646a16121b0810 (patch) | |
tree | 9a5c9ed4a6260fddeb3221782742c40dfba76fd5 /nodes_furniture.lua | |
parent | 5f80623617c8bb1e605d3b1324146027509b5991 (diff) |
added some missing textures so it can be used with subgames that do not contain default
Diffstat (limited to 'nodes_furniture.lua')
-rw-r--r-- | nodes_furniture.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/nodes_furniture.lua b/nodes_furniture.lua index 0137103..3494c6d 100644 --- a/nodes_furniture.lua +++ b/nodes_furniture.lua @@ -25,7 +25,7 @@ end minetest.register_node("cottages:bed_foot", { description = S("Bed (foot region)"), drawtype = "nodebox", - tiles = {"cottages_beds_bed_top_bottom.png", "default_wood.png", "cottages_beds_bed_side.png", "cottages_beds_bed_side.png", "cottages_beds_bed_side.png", "cottages_beds_bed_side.png"}, + tiles = {"cottages_beds_bed_top_bottom.png", cottages.texture_furniture, "cottages_beds_bed_side.png", "cottages_beds_bed_side.png", "cottages_beds_bed_side.png", "cottages_beds_bed_side.png"}, paramtype = "light", paramtype2 = "facedir", groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3}, @@ -57,7 +57,7 @@ minetest.register_node("cottages:bed_foot", { minetest.register_node("cottages:bed_head", { description = S("Bed (head region)"), drawtype = "nodebox", - tiles = {"cottages_beds_bed_top_top.png", "default_wood.png", "cottages_beds_bed_side_top_r.png", "cottages_beds_bed_side_top_l.png", "default_wood.png", "cottages_beds_bed_side.png"}, + tiles = {"cottages_beds_bed_top_top.png", cottages.texture_furniture, "cottages_beds_bed_side_top_r.png", "cottages_beds_bed_side_top_l.png", cottages.texture_furniture, "cottages_beds_bed_side.png"}, paramtype = "light", paramtype2 = "facedir", groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3}, @@ -243,7 +243,7 @@ minetest.register_node("cottages:shelf", { minetest.register_node("cottages:stovepipe", { description = S("stovepipe"), drawtype = "nodebox", - tiles = {"default_steel_block.png"}, + tiles = {"cottages_steel_block.png"}, paramtype = "light", paramtype2 = "facedir", groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, @@ -268,7 +268,7 @@ minetest.register_node("cottages:washing", { description = S("washing place"), drawtype = "nodebox", -- top, bottom, side1, side2, inner, outer - tiles = {"default_clay.png"}, + tiles = {"cottages_clay.png"}, paramtype = "light", paramtype2 = "facedir", groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, |