Skip to content

Commit

Permalink
Fix OilPopulate treating every biome as an excessive one.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexIIL committed Feb 19, 2017
1 parent bedf6c3 commit daa1e12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/buildcraft/energy/generation/OilPopulate.java
Expand Up @@ -85,7 +85,7 @@ public void generateOil(World world, Random rand, int chunkX, int chunkZ) {
boolean oilBiome = surfaceDepositBiomeNames.contains(biome.getBiomeName());

double bonus = oilBiome ? 3.0 : 1.0;
if (excessiveBiomeNames.contains(biome.getBiomeName()) || true) {
if (excessiveBiomeNames.contains(biome.getBiomeName())) {
bonus *= 30.0;
}
GenType type = GenType.NONE;
Expand Down

0 comments on commit daa1e12

Please sign in to comment.