Fix type in biome list.

This commit is contained in:
LexManos 2013-05-20 19:24:14 -07:00
parent 75e99e2150
commit f382679cae
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@
+
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;
/** A GenLayer containing the indices into BiomeGenBase.biomeList[] */