summaryrefslogtreecommitdiff
path: root/technic/machines/HV/nuclear_reactor.lua
diff options
context:
space:
mode:
Diffstat (limited to 'technic/machines/HV/nuclear_reactor.lua')
-rw-r--r--technic/machines/HV/nuclear_reactor.lua7
1 files changed, 3 insertions, 4 deletions
diff --git a/technic/machines/HV/nuclear_reactor.lua b/technic/machines/HV/nuclear_reactor.lua
index 7ff5c5b..bec196e 100644
--- a/technic/machines/HV/nuclear_reactor.lua
+++ b/technic/machines/HV/nuclear_reactor.lua
@@ -319,7 +319,7 @@ minetest.register_node("technic:hv_nuclear_reactor_core_active", {
local meta = minetest.get_meta(pos)
-- Connected back?
- if meta:get_int("HV_EU_timeout") > 0 then return end
+ if meta:get_int("HV_EU_timeout") > 0 then return false end
local burn_time = meta:get_int("burn_time") or 0
@@ -329,12 +329,11 @@ minetest.register_node("technic:hv_nuclear_reactor_core_active", {
technic.swap_node(pos, "technic:hv_nuclear_reactor_core")
meta:set_int("structure_accumulated_badness", 0)
siren_clear(pos, meta)
- return
+ return false
end
meta:set_int("burn_time", burn_time + 1)
- local timer = minetest.get_node_timer(pos)
- timer:start(1)
+ return true
end,
})