mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-05-17 03:08:58 +00:00
removed debug messages
This commit is contained in:
parent
5651fc1cb1
commit
734b066131
@ -208,8 +208,7 @@ class PMFLevel extends PMF{
|
|||||||
}
|
}
|
||||||
$this->initCleanChunk($X, $Z);
|
$this->initCleanChunk($X, $Z);
|
||||||
$ret = $this->level->generateChunk($X, $Z);
|
$ret = $this->level->generateChunk($X, $Z);
|
||||||
$this->saveChunk($X, $Z);
|
$this->saveChunk($X, $Z);
|
||||||
echo decbin($this->chunkInfo[self::getIndex($X, $Z)][0]).PHP_EOL;
|
|
||||||
$this->populateChunk($X - 1, $Z);
|
$this->populateChunk($X - 1, $Z);
|
||||||
$this->populateChunk($X + 1, $Z);
|
$this->populateChunk($X + 1, $Z);
|
||||||
$this->populateChunk($X, $Z - 1);
|
$this->populateChunk($X, $Z - 1);
|
||||||
@ -233,7 +232,6 @@ class PMFLevel extends PMF{
|
|||||||
$this->isGenerated($X - 1, $Z - 1) and
|
$this->isGenerated($X - 1, $Z - 1) and
|
||||||
$this->isGenerated($X + 1, $Z - 1) and
|
$this->isGenerated($X + 1, $Z - 1) and
|
||||||
$this->isGenerated($X - 1, $Z + 1)){
|
$this->isGenerated($X - 1, $Z + 1)){
|
||||||
echo "pop $X $Z\n";
|
|
||||||
$this->level->populateChunk($X, $Z);
|
$this->level->populateChunk($X, $Z);
|
||||||
$this->saveChunk($X, $Z);
|
$this->saveChunk($X, $Z);
|
||||||
}
|
}
|
||||||
@ -243,7 +241,6 @@ class PMFLevel extends PMF{
|
|||||||
if($this->isChunkLoaded($X, $Z)){
|
if($this->isChunkLoaded($X, $Z)){
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
echo "load $X $Z\n";
|
|
||||||
$index = self::getIndex($X, $Z);
|
$index = self::getIndex($X, $Z);
|
||||||
$path = $this->getChunkPath($X, $Z);
|
$path = $this->getChunkPath($X, $Z);
|
||||||
if(!file_exists($path)){
|
if(!file_exists($path)){
|
||||||
|
Loading…
x
Reference in New Issue
Block a user