Fix type in biome list.

This commit is contained in:
LexManos 2013-05-20 19:24:14 -07:00
parent 75e99e2150
commit f382679cae

View file

@ -18,7 +18,7 @@
+ +
public class WorldChunkManager public class WorldChunkManager
{ {
+ public static ArrayList<BiomeGenBase> allowedBiomes = new ArrayList<BiomeGenBase>(Arrays.asList(forest, plains, taiga, taigaHills, forestHills, jungle. jungleHills)); + public static ArrayList<BiomeGenBase> allowedBiomes = new ArrayList<BiomeGenBase>(Arrays.asList(forest, plains, taiga, taigaHills, forestHills, jungle, jungleHills));
private GenLayer genBiomes; private GenLayer genBiomes;
/** A GenLayer containing the indices into BiomeGenBase.biomeList[] */ /** A GenLayer containing the indices into BiomeGenBase.biomeList[] */