mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-04-22 00:33:59 +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{
|
||||
$this->db->put($key,
|
||||
chr(self::CURRENT_LEVEL_SUBCHUNK_VERSION) .
|
||||
$subChunks[$y]->getBlockIdArray() .
|
||||
$subChunks[$y]->getBlockDataArray()
|
||||
$subChunk->getBlockIdArray() .
|
||||
$subChunk->getBlockDataArray()
|
||||
);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user