Update 'RealTime/src/RealTime/MainClass.php'

This commit is contained in:
Josh North 2018-07-20 13:04:04 -04:00
parent 6a3b19986c
commit 81cd81202d

View File

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