Fixed disabling river gen

This commit is contained in:
Adubbz 2016-02-04 20:24:43 +11:00
parent f8bea4da5a
commit 80647163db

View file

@ -43,7 +43,7 @@ public class GenLayerRiverMixBOP extends BOPGenLayer
for (int i = 0; i < areaWidth * areaHeight; ++i)
{
if (biomeIds[i] != BiomeGenBase.frozenOcean.biomeID && biomeIds[i] != BiomeGenBase.ocean.biomeID && biomeIds[i] != BiomeGenBase.deepOcean.biomeID && biomeSupportsRivers(i))
if (biomeIds[i] != BiomeGenBase.frozenOcean.biomeID && biomeIds[i] != BiomeGenBase.ocean.biomeID && biomeIds[i] != BiomeGenBase.deepOcean.biomeID && biomeSupportsRivers(biomeIds[i]))
{
if (riverValues[i] == BiomeGenBase.river.biomeID)
{