diff --git a/application/core/Callbacks/TimerListening.php b/application/core/Callbacks/TimerListening.php index 0e5c55ff..3c211406 100644 --- a/application/core/Callbacks/TimerListening.php +++ b/application/core/Callbacks/TimerListening.php @@ -72,6 +72,6 @@ class TimerListening { if (!$time) { $time = microtime(true); } - return ($this->lastTrigger + $this->deltaTime > $time); + return ($this->lastTrigger + $this->deltaTime <= $time); } }