This commit is contained in:
Joachim Stolberg 2019-03-08 22:52:27 +01:00
parent 74b62368ba
commit 04815fea32
4 changed files with 4 additions and 2 deletions

View File

@ -226,7 +226,7 @@ minetest.register_node("techage:boiler1", {
fixed = {-8/32, -16/32, -8/32, 8/32, 16/32, 8/32},
},
paramtype2 = "facedir",
--paramtype2 = "facedir",
groups = {cracky=1},
on_rotate = screwdriver.disallow,
is_ground_content = false,
@ -291,7 +291,7 @@ minetest.register_node("techage:boiler2", {
minetest.after(0.5, move_to_water, pos)
end,
paramtype2 = "facedir",
--paramtype2 = "facedir",
groups = {cracky=1},
on_rotate = screwdriver.disallow,
is_ground_content = false,

View File

@ -82,6 +82,7 @@ local function distibuting(pos, mem)
else
State:fault(pos, mem)
start_cylinder(pos, false)
generator.turn_power_on(pos, 0)
end
end
@ -94,6 +95,7 @@ local function node_timer(pos, elapsed)
else
State:fault(pos, mem)
start_cylinder(pos, false)
generator.turn_power_on(pos, 0)
end
return State:is_active(mem)
end

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB