Level: use increment operation for updating time

This commit is contained in:
Dylan K. Taylor 2018-05-19 16:05:08 +01:00
parent bac649137b
commit f2511983cf

View File

@ -671,7 +671,7 @@ class Level implements ChunkManager, Metadatable{
if($this->stopTime){ if($this->stopTime){
return; return;
}else{ }else{
$this->time += 1; ++$this->time;
} }
} }