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(); }