mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-04-22 08:44:01 +00:00
PopulationTask: fixed undefined method call
fuck you PhpStorm! fuck you PhpStorm! fuck you PhpStorm!
This commit is contained in:
parent
359d0835f3
commit
2e2515354c
@ -127,7 +127,7 @@ class PopulationTask extends AsyncTask{
|
||||
|
||||
foreach($chunks as $i => $c){
|
||||
$oldModCount = $oldModCounts[$i] ?? 0;
|
||||
$this->{"chunk$i"} = $oldModCount !== $c->getModificationCounter() ? FastChunkSerializer::serializeTerrain($c) : null;
|
||||
$this->{"chunk$i"} = $oldModCount !== $c->getModificationCount() ? FastChunkSerializer::serializeTerrain($c) : null;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user