Merge pull request #2959 from LDX-MCPE/patch-1

fixed typo
This commit is contained in:
Shoghi Cervantes 2015-04-30 08:34:57 +02:00
commit b33706d427

View File

@ -323,7 +323,7 @@ class Chunk extends BaseFullChunk{
}
$heighmap = pack("C*", ...$this->getHeightMapArray());
$heightmap = pack("C*", ...$this->getHeightMapArray());
$biomeColors = pack("N*", ...$this->getBiomeColorArray());
return $chunkIndex .
@ -331,9 +331,9 @@ class Chunk extends BaseFullChunk{
$this->getBlockDataArray() .
$this->getBlockSkyLightArray() .
$this->getBlockLightArray() .
$heighmap .
$heightmap .
$biomeColors . chr(
($this->isPopulated() ? 0x02 : 0) | ($this->isGenerated() ? 0x01 : 0)
);
}
}
}