summaryrefslogtreecommitdiff
path: root/mesecons_extrawires
diff options
context:
space:
mode:
authorAndres Eduardo Montoya Cruz <>2012-12-21 20:24:43 -0500
committerAndres Eduardo Montoya Cruz <>2012-12-21 20:24:43 -0500
commit34fa8a116702864f295f8858cfbd61dc4085bb3b (patch)
treee3748fe7d83c2c2ceaceddaf0066423b3fec3df4 /mesecons_extrawires
parent23bebfc054008d2b6796e3f10d3bc67bee8b31ed (diff)
downloadmesecons-34fa8a116702864f295f8858cfbd61dc4085bb3b.tar
mesecons-34fa8a116702864f295f8858cfbd61dc4085bb3b.tar.gz
mesecons-34fa8a116702864f295f8858cfbd61dc4085bb3b.tar.bz2
mesecons-34fa8a116702864f295f8858cfbd61dc4085bb3b.tar.xz
mesecons-34fa8a116702864f295f8858cfbd61dc4085bb3b.zip
now the insulated wires change their color when they are turn on
Diffstat (limited to 'mesecons_extrawires')
-rw-r--r--mesecons_extrawires/crossing.lua2
-rw-r--r--mesecons_extrawires/tjunction.lua12
2 files changed, 7 insertions, 7 deletions
diff --git a/mesecons_extrawires/crossing.lua b/mesecons_extrawires/crossing.lua
index 2b35af1..9b381bf 100644
--- a/mesecons_extrawires/crossing.lua
+++ b/mesecons_extrawires/crossing.lua
@@ -6,7 +6,7 @@ end
minetest.register_node("mesecons_extrawires:crossing_on", {
drawtype = "nodebox",
- tiles = {"jeija_insulated_wire_sides.png"},
+ tiles = {"jeija_insulated_wire_sides_on.png"},
paramtype = "light",
walkable = false,
stack_max = 99,
diff --git a/mesecons_extrawires/tjunction.lua b/mesecons_extrawires/tjunction.lua
index cb16cfb..aa100f5 100644
--- a/mesecons_extrawires/tjunction.lua
+++ b/mesecons_extrawires/tjunction.lua
@@ -28,11 +28,11 @@ end
minetest.register_node("mesecons_extrawires:tjunction_on", {
drawtype = "nodebox",
tiles = {
- "jeija_insulated_wire_sides.png",
- "jeija_insulated_wire_sides.png",
+ "jeija_insulated_wire_sides_on.png",
+ "jeija_insulated_wire_sides_on.png",
"jeija_insulated_wire_ends_on.png",
"jeija_insulated_wire_ends_on.png",
- "jeija_insulated_wire_sides.png",
+ "jeija_insulated_wire_sides_on.png",
"jeija_insulated_wire_ends_on.png"
},
paramtype = "light",
@@ -55,11 +55,11 @@ minetest.register_node("mesecons_extrawires:tjunction_off", {
drawtype = "nodebox",
description = "T-junction",
tiles = {
- "jeija_insulated_wire_sides.png",
- "jeija_insulated_wire_sides.png",
+ "jeija_insulated_wire_sides_off.png",
+ "jeija_insulated_wire_sides_off.png",
"jeija_insulated_wire_ends_off.png",
"jeija_insulated_wire_ends_off.png",
- "jeija_insulated_wire_sides.png",
+ "jeija_insulated_wire_sides_off.png",
"jeija_insulated_wire_ends_off.png"
},
paramtype = "light",