isaacscript-common 4.7.1 → 4.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -39,7 +39,7 @@ function checkExecuteIntervalFunctions(self, frameCount, functionTuples)
|
|
|
39
39
|
local numIntervalFrames = ____value[3]
|
|
40
40
|
local returnValue = func(nil)
|
|
41
41
|
arrayRemoveIndexInPlace(nil, functionTuples, i)
|
|
42
|
-
if numIntervalFrames ~= nil and returnValue
|
|
42
|
+
if numIntervalFrames ~= nil and returnValue ~= false then
|
|
43
43
|
local nextFireFrame = frameCount + numIntervalFrames
|
|
44
44
|
local tuple = {nextFireFrame, func, numIntervalFrames}
|
|
45
45
|
functionTuples[#functionTuples + 1] = tuple
|