From d84017d4c10af3ae98cf80bf567a3469de8cd22d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20Schro=CC=88der?= Date: Thu, 8 May 2014 20:37:36 +0200 Subject: [PATCH] fixed timer listening --- application/core/Callbacks/TimerListening.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } }