summaryrefslogtreecommitdiff
path: root/mesecons_extrawires
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2013-08-28 01:26:00 -0400
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2013-08-28 01:26:00 -0400
commit5516ca58e92878675eba6d9855626695401cff7b (patch)
tree7629f7250c18b02b38194d9724b39d5543433499 /mesecons_extrawires
parent913e355a718c41551fe0e29ff1356e11d669ac73 (diff)
downloadmesecons-5516ca58e92878675eba6d9855626695401cff7b.tar
mesecons-5516ca58e92878675eba6d9855626695401cff7b.tar.gz
mesecons-5516ca58e92878675eba6d9855626695401cff7b.tar.bz2
mesecons-5516ca58e92878675eba6d9855626695401cff7b.tar.xz
mesecons-5516ca58e92878675eba6d9855626695401cff7b.zip
Give crossing proper textures
Diffstat (limited to 'mesecons_extrawires')
-rw-r--r--mesecons_extrawires/crossover.lua33
1 files changed, 29 insertions, 4 deletions
diff --git a/mesecons_extrawires/crossover.lua b/mesecons_extrawires/crossover.lua
index b150e03..9cdf3c2 100644
--- a/mesecons_extrawires/crossover.lua
+++ b/mesecons_extrawires/crossover.lua
@@ -21,7 +21,11 @@ local crossover_states = {
minetest.register_node("mesecons_extrawires:crossover_off", {
description = "Insulated Crossover",
drawtype = "nodebox",
- tiles = {"jeija_insulated_wire_sides_off.png"},
+ tiles = {
+ "jeija_insulated_wire_crossing_tb_off.png",
+ "jeija_insulated_wire_crossing_tb_off.png",
+ "jeija_insulated_wire_ends_off.png"
+ },
paramtype = "light",
walkable = false,
stack_max = 99,
@@ -50,7 +54,14 @@ minetest.register_node("mesecons_extrawires:crossover_01", {
description = "You hacker you!",
drop = "mesecons_extrawires:crossover_off",
drawtype = "nodebox",
- tiles = {"default_dirt.png"},
+ tiles = {
+ "jeija_insulated_wire_crossing_tb_01.png",
+ "jeija_insulated_wire_crossing_tb_01.png",
+ "jeija_insulated_wire_ends_01x.png",
+ "jeija_insulated_wire_ends_01x.png",
+ "jeija_insulated_wire_ends_01z.png",
+ "jeija_insulated_wire_ends_01z.png"
+ },
paramtype = "light",
walkable = false,
stack_max = 99,
@@ -79,7 +90,14 @@ minetest.register_node("mesecons_extrawires:crossover_10", {
description = "You hacker you!",
drop = "mesecons_extrawires:crossover_off",
drawtype = "nodebox",
- tiles = {"default_stone.png"},
+ tiles = {
+ "jeija_insulated_wire_crossing_tb_10.png",
+ "jeija_insulated_wire_crossing_tb_10.png",
+ "jeija_insulated_wire_ends_10x.png",
+ "jeija_insulated_wire_ends_10x.png",
+ "jeija_insulated_wire_ends_10z.png",
+ "jeija_insulated_wire_ends_10z.png"
+ },
paramtype = "light",
walkable = false,
stack_max = 99,
@@ -108,7 +126,14 @@ minetest.register_node("mesecons_extrawires:crossover_on", {
description = "You hacker you!",
drop = "mesecons_extrawires:crossover_off",
drawtype = "nodebox",
- tiles = {"jeija_insulated_wire_sides_on.png"},
+ tiles = {
+ "jeija_insulated_wire_crossing_tb_on.png",
+ "jeija_insulated_wire_crossing_tb_on.png",
+ "jeija_insulated_wire_ends_on.png",
+ "jeija_insulated_wire_ends_on.png",
+ "jeija_insulated_wire_ends_on.png",
+ "jeija_insulated_wire_ends_on.png"
+ },
paramtype = "light",
walkable = false,
stack_max = 99,