From 81cd81202d2824cc75afafe501e02514ddc573b9 Mon Sep 17 00:00:00 2001 From: Josh North Date: Fri, 20 Jul 2018 13:04:04 -0400 Subject: [PATCH] Update 'RealTime/src/RealTime/MainClass.php' --- RealTime/src/RealTime/MainClass.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RealTime/src/RealTime/MainClass.php b/RealTime/src/RealTime/MainClass.php index 0e50702..6929909 100644 --- a/RealTime/src/RealTime/MainClass.php +++ b/RealTime/src/RealTime/MainClass.php @@ -69,12 +69,12 @@ $test = date('H') + ($modify); } $this->getLogger()->info(TextFormat::DARK_GREEN ."[RealTime] It is " . $test. " (20h is same as 8pm)"); - $this->getPlugin()->getScheduler()->scheduleRepeatingTask(new changeTimeTask($this), 120); + $this->getScheduler()->scheduleRepeatingTask(new changeTimeTask($this), 120); $this->changeTime(); if ($tTime == true) { $this->getLogger()->info($tTimeInterval); - $this->getPlugin()->getScheduler()->scheduleRepeatingTask(new tellTimeTask($this), $tTimeInterval); + $this->getScheduler()->scheduleRepeatingTask(new tellTimeTask($this), $tTimeInterval); $this->tellTime(); }