Fixed disabling river gen
This commit is contained in:
parent
f8bea4da5a
commit
80647163db
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue