예제 #1
0
 public function generateChunk($x, $z)
 {
     $this->setChunk($x, $z, Chunk::getEmptyChunk($x, $z, $this->provider));
 }
예제 #2
0
파일: Level.php 프로젝트: AbelGamerC/Katana
 public function generateChunk($x, $z, $force = false)
 {
     $this->setChunk($x, $z, Chunk::getEmptyChunk($x, $z, $this->provider));
     return true;
 }