Fix time bugs

This commit is contained in:
dktapps 2016-09-06 17:39:58 +01:00 committed by Dylan K. Taylor
parent bf4b96e144
commit a6f8379c40

View File

@ -609,10 +609,10 @@ class Level implements ChunkManager, Metadatable{
* Changes to this function won't be recorded on the version.
*/
public function checkTime(){
if($this->stopTime == true){
if($this->stopTime === true){
return;
}else{
$this->time += 1.25;
$this->time += 1;
}
}