New Random block update tick

This commit is contained in:
Shoghi Cervantes
2014-03-02 17:56:24 +01:00
parent ca308f8159
commit 9cc9de8dae
7 changed files with 57 additions and 45 deletions

View File

@ -46,8 +46,7 @@ class WorldGenerator{
public function generate(){
$this->generator->init($this->level, $this->random);
//Generate 4 chunks for spawning players
for($Z = 7; $Z <= 8; ++$Z){
for($Z = 7; $Z <= 9; ++$Z){
for($X = 7; $X <= 9; ++$X){
$this->level->level->loadChunk($X, $Z);
}