summaryrefslogtreecommitdiff
path: root/mesecons_extrawires
diff options
context:
space:
mode:
authorJeija <norrepli@gmail.com>2012-12-23 17:21:34 +0100
committerJeija <norrepli@gmail.com>2012-12-23 17:21:34 +0100
commitc508bfaea62156684ea90b04e8963fb9e30dfaf2 (patch)
tree331dcced93f3da27b6fbbc39da7e9486918908bc /mesecons_extrawires
parentaf8fd75fa484cdf881e2414f3baa3a0eed6562e9 (diff)
parent5e8e003b8c45e6cf4898f960d312b1f442a5e012 (diff)
downloadmesecons-c508bfaea62156684ea90b04e8963fb9e30dfaf2.tar
mesecons-c508bfaea62156684ea90b04e8963fb9e30dfaf2.tar.gz
mesecons-c508bfaea62156684ea90b04e8963fb9e30dfaf2.tar.bz2
mesecons-c508bfaea62156684ea90b04e8963fb9e30dfaf2.tar.xz
mesecons-c508bfaea62156684ea90b04e8963fb9e30dfaf2.zip
Merge branch 'nextgen' of https://github.com/Jeija/minetest-mod-mesecons into nextgen
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",