From f382679cae9501decc30aa3041ef2240c93f41cf Mon Sep 17 00:00:00 2001 From: LexManos Date: Mon, 20 May 2013 19:24:14 -0700 Subject: [PATCH] Fix type in biome list. --- .../net/minecraft/world/biome/WorldChunkManager.java.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patches/minecraft/net/minecraft/world/biome/WorldChunkManager.java.patch b/patches/minecraft/net/minecraft/world/biome/WorldChunkManager.java.patch index 27d2b1ee4..e3662ca5a 100644 --- a/patches/minecraft/net/minecraft/world/biome/WorldChunkManager.java.patch +++ b/patches/minecraft/net/minecraft/world/biome/WorldChunkManager.java.patch @@ -18,7 +18,7 @@ + public class WorldChunkManager { -+ public static ArrayList allowedBiomes = new ArrayList(Arrays.asList(forest, plains, taiga, taigaHills, forestHills, jungle. jungleHills)); ++ public static ArrayList allowedBiomes = new ArrayList(Arrays.asList(forest, plains, taiga, taigaHills, forestHills, jungle, jungleHills)); private GenLayer genBiomes; /** A GenLayer containing the indices into BiomeGenBase.biomeList[] */