Skip to content

Commit

Permalink
Use rotate_simple for insulated wires (#382)
Browse files Browse the repository at this point in the history
  • Loading branch information
Desour authored and numberZero committed Jan 30, 2018
1 parent 065e870 commit 7537b9f
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 0 deletions.
4 changes: 4 additions & 0 deletions mesecons_extrawires/corner.lua
@@ -1,3 +1,5 @@
local screwdriver_exists = minetest.global_exists("screwdriver")

local corner_nodebox = {
type = "fixed",
fixed = {{ -16/32-0.001, -17/32, -3/32, 0, -13/32, 3/32 },
Expand Down Expand Up @@ -47,6 +49,7 @@ minetest.register_node("mesecons_extrawires:corner_on", {
offstate = "mesecons_extrawires:corner_off"
}},
on_blast = mesecon.on_blastnode,
on_rotate = screwdriver_exists and screwdriver.rotate_simple,
})

minetest.register_node("mesecons_extrawires:corner_off", {
Expand Down Expand Up @@ -75,6 +78,7 @@ minetest.register_node("mesecons_extrawires:corner_off", {
onstate = "mesecons_extrawires:corner_on"
}},
on_blast = mesecon.on_blastnode,
on_rotate = screwdriver_exists and screwdriver.rotate_simple,
})

minetest.register_craft({
Expand Down
1 change: 1 addition & 0 deletions mesecons_extrawires/depends.txt
@@ -1,2 +1,3 @@
default
mesecons
screwdriver?
4 changes: 4 additions & 0 deletions mesecons_extrawires/tjunction.lua
@@ -1,3 +1,5 @@
local screwdriver_exists = minetest.global_exists("screwdriver")

local tjunction_nodebox = {
type = "fixed",
fixed = {{ -16/32-0.001, -17/32, -3/32, 16/32+0.001, -13/32, 3/32 },
Expand Down Expand Up @@ -48,6 +50,7 @@ minetest.register_node("mesecons_extrawires:tjunction_on", {
offstate = "mesecons_extrawires:tjunction_off"
}},
on_blast = mesecon.on_blastnode,
on_rotate = screwdriver_exists and screwdriver.rotate_simple,
})

minetest.register_node("mesecons_extrawires:tjunction_off", {
Expand Down Expand Up @@ -76,6 +79,7 @@ minetest.register_node("mesecons_extrawires:tjunction_off", {
onstate = "mesecons_extrawires:tjunction_on"
}},
on_blast = mesecon.on_blastnode,
on_rotate = screwdriver_exists and screwdriver.rotate_simple,
})

minetest.register_craft({
Expand Down
1 change: 1 addition & 0 deletions mesecons_insulated/depends.txt
@@ -1 +1,2 @@
mesecons
screwdriver?
4 changes: 4 additions & 0 deletions mesecons_insulated/init.lua
@@ -1,3 +1,5 @@
local screwdriver_exists = minetest.global_exists("screwdriver")

local function insulated_wire_get_rules(node)
local rules = {{x = 1, y = 0, z = 0},
{x =-1, y = 0, z = 0}}
Expand Down Expand Up @@ -39,6 +41,7 @@ minetest.register_node("mesecons_insulated:insulated_on", {
rules = insulated_wire_get_rules
}},
on_blast = mesecon.on_blastnode,
on_rotate = screwdriver_exists and screwdriver.rotate_simple,
})

minetest.register_node("mesecons_insulated:insulated_off", {
Expand Down Expand Up @@ -72,6 +75,7 @@ minetest.register_node("mesecons_insulated:insulated_off", {
rules = insulated_wire_get_rules
}},
on_blast = mesecon.on_blastnode,
on_rotate = screwdriver_exists and screwdriver.rotate_simple,
})

minetest.register_craft({
Expand Down

0 comments on commit 7537b9f

Please sign in to comment.