Merge pull request #2196 from Choonster/master

BiomeManager: Fix off-by-one errors
This commit is contained in:
LexManos 2015-11-19 18:55:41 -08:00
commit 8b70d770d5

View file

@ -147,7 +147,7 @@ public class BiomeManager
public static ImmutableList<BiomeEntry> getBiomes(BiomeType type)
{
int idx = type.ordinal();
List<BiomeEntry> list = idx > biomes.length ? null : biomes[idx];
List<BiomeEntry> list = idx >= biomes.length ? null : biomes[idx];
return list != null ? ImmutableList.copyOf(list) : null;
}
@ -179,7 +179,7 @@ public class BiomeManager
if (ret.ordinal() >= biomes.length)
{
biomes = Arrays.copyOf(biomes, ret.ordinal());
biomes = Arrays.copyOf(biomes, ret.ordinal() + 1);
}
return ret;