mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-06-16 16:34:05 +00:00
LevelDB: Fixed nonsensical array access in iterator loop
This commit is contained in:
parent
c1a6711514
commit
8bc733514b
@ -500,8 +500,8 @@ class LevelDB extends BaseLevelProvider{
|
|||||||
}else{
|
}else{
|
||||||
$this->db->put($key,
|
$this->db->put($key,
|
||||||
chr(self::CURRENT_LEVEL_SUBCHUNK_VERSION) .
|
chr(self::CURRENT_LEVEL_SUBCHUNK_VERSION) .
|
||||||
$subChunks[$y]->getBlockIdArray() .
|
$subChunk->getBlockIdArray() .
|
||||||
$subChunks[$y]->getBlockDataArray()
|
$subChunk->getBlockDataArray()
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user