mirror of
https://github.com/joe7575/techpack.git
synced 2024-12-25 07:02:31 +01:00
cycletime bugfix
This commit is contained in:
parent
baa0b655b0
commit
b34f5502d2
@ -326,7 +326,7 @@ local function on_timer(pos, elapsed)
|
|||||||
-- considering cycle frequency
|
-- considering cycle frequency
|
||||||
local cycletime = meta:get_int("cycletime") or 1
|
local cycletime = meta:get_int("cycletime") or 1
|
||||||
local cyclecount = (meta:get_int("cyclecount") or 0) + 1
|
local cyclecount = (meta:get_int("cyclecount") or 0) + 1
|
||||||
if cyclecount < cycletime then
|
if cycletime == 0 or cyclecount < cycletime then
|
||||||
meta:set_int("cyclecount", cyclecount)
|
meta:set_int("cyclecount", cyclecount)
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user