removed debug messages

This commit is contained in:
Shoghi Cervantes 2014-02-28 22:03:09 +01:00
parent 5651fc1cb1
commit 734b066131

View File

@ -209,7 +209,6 @@ 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)){