Disable random ticking for some blocks depending on their states

we don't need to waste CPU time attempting to tick fully grown crops.
This commit is contained in:
Dylan K. Taylor
2023-09-29 12:45:37 +01:00
parent ca69f08da0
commit 390cc3060a
8 changed files with 11 additions and 11 deletions

View File

@ -99,7 +99,7 @@ class CocoaBlock extends Transparent{
}
public function ticksRandomly() : bool{
return true;
return $this->age < self::MAX_AGE;
}
public function onRandomTick() : void{