Fix type in biome list.
This commit is contained in:
parent
75e99e2150
commit
f382679cae
1 changed files with 1 additions and 1 deletions
|
@ -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[] */
|
||||
|
|
Loading…
Reference in a new issue