summaryrefslogtreecommitdiff
path: root/mesecons_extrawires
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2013-04-21 22:16:17 -0400
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2013-04-21 22:16:17 -0400
commitb3fb406727eb32172d2f65ade898c0daea8866a3 (patch)
treed9bd0d5aba1e4f5654d4e5936751a19d903fbb7b /mesecons_extrawires
parentb0bef909a0b38f8c35d4fc84a2df621c7b96f559 (diff)
downloadmesecons-b3fb406727eb32172d2f65ade898c0daea8866a3.tar
mesecons-b3fb406727eb32172d2f65ade898c0daea8866a3.tar.gz
mesecons-b3fb406727eb32172d2f65ade898c0daea8866a3.tar.bz2
mesecons-b3fb406727eb32172d2f65ade898c0daea8866a3.tar.xz
mesecons-b3fb406727eb32172d2f65ade898c0daea8866a3.zip
Minor tweak to allow vertical wires with caps to use the "vertical"
texture for the sides (still uses the "full" for the top/bottom of the caps).
Diffstat (limited to 'mesecons_extrawires')
-rw-r--r--mesecons_extrawires/vertical.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/mesecons_extrawires/vertical.lua b/mesecons_extrawires/vertical.lua
index 7575e9f..39b5417 100644
--- a/mesecons_extrawires/vertical.lua
+++ b/mesecons_extrawires/vertical.lua
@@ -117,7 +117,7 @@ minetest.register_node("mesecons_extrawires:vertical_off", {
minetest.register_node("mesecons_extrawires:vertical_top_on", {
description = "Vertical mesecon",
drawtype = "nodebox",
- tiles = {"wires_full_on.png"},
+ tiles = {"wires_full_on.png","wires_full_on.png","wires_vertical_on.png"},
walkable = false,
paramtype = "light",
sunlight_propagates = true,
@@ -139,7 +139,7 @@ minetest.register_node("mesecons_extrawires:vertical_top_on", {
minetest.register_node("mesecons_extrawires:vertical_top_off", {
description = "Vertical mesecon",
drawtype = "nodebox",
- tiles = {"wires_full_off.png"},
+ tiles = {"wires_full_off.png","wires_full_off.png","wires_vertical_off.png"},
walkable = false,
paramtype = "light",
sunlight_propagates = true,
@@ -162,7 +162,7 @@ minetest.register_node("mesecons_extrawires:vertical_top_off", {
minetest.register_node("mesecons_extrawires:vertical_bottom_on", {
description = "Vertical mesecon",
drawtype = "nodebox",
- tiles = {"wires_full_on.png"},
+ tiles = {"wires_full_on.png","wires_full_on.png","wires_vertical_on.png"},
walkable = false,
paramtype = "light",
sunlight_propagates = true,
@@ -183,7 +183,7 @@ minetest.register_node("mesecons_extrawires:vertical_bottom_on", {
minetest.register_node("mesecons_extrawires:vertical_bottom_off", {
description = "Vertical mesecon",
drawtype = "nodebox",
- tiles = {"wires_full_off.png"},
+ tiles = {"wires_full_off.png","wires_full_off.png","wires_vertical_off.png"},
walkable = false,
paramtype = "light",
sunlight_propagates = true,