diff options
| author | Jeija <norrepli@googlemail.com> | 2012-12-21 21:21:39 -0800 | 
|---|---|---|
| committer | Jeija <norrepli@googlemail.com> | 2012-12-21 21:21:39 -0800 | 
| commit | 5e8e003b8c45e6cf4898f960d312b1f442a5e012 (patch) | |
| tree | 7d5d9e534e34d1c052c7533e68e186c89cc5123e /mesecons_extrawires | |
| parent | 6fab716f3e05140981259c084bcf8e075721d938 (diff) | |
| parent | 34fa8a116702864f295f8858cfbd61dc4085bb3b (diff) | |
Merge pull request #65 from montyoso/nextgen
now the insulated wires change their color when are turned on
Diffstat (limited to 'mesecons_extrawires')
| -rw-r--r-- | mesecons_extrawires/crossing.lua | 2 | ||||
| -rw-r--r-- | mesecons_extrawires/tjunction.lua | 12 | 
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", | 
