fix world gen

pull/12/head
valoeghese 2020-02-28 18:19:22 +13:00
parent 97180371f6
commit 587e425df0
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ public abstract class Dimension<T extends ChunkGenerator>
}
public WorldModifier[] getWorldModifierArray()
{ return new WorldModifier[0]; }
{ return this.worldModifiers.toArray(new WorldModifier[0]); }
public abstract T createChunkGenerator(long seed);