pocketmine\level\Level::checkTime PHP Method

checkTime() public method

Changes to this function won't be recorded on the version.
public checkTime ( )
    public function checkTime()
    {
        if ($this->stopTime == true) {
            return;
        } else {
            $this->time += 1;
        }
    }
Level