Tried to fix lava/water springs

This commit is contained in:
Matt Caughey 2014-04-08 08:01:33 -04:00
parent 2f91e75d66
commit f6376e2130
2 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ import java.util.Random;
public class BiomeGenMoor extends BOPBiome public class BiomeGenMoor extends BOPBiome
{ {
private static final Height biomeHeight = new Height(0.7F, 0.8F); private static final Height biomeHeight = new Height(0.4F, 0.6F);
public BiomeGenMoor(int id) public BiomeGenMoor(int id)
{ {

View File

@ -32,8 +32,8 @@ public class BOPWorldFeatures
addFeature("generateAsh", false); addFeature("generateAsh", false);
addFeature("generateMelons", false); addFeature("generateMelons", false);
addFeature("waterPoolsPerChunk", 50); addFeature("waterPoolsPerChunk", 0);
addFeature("lavaPoolsPerChunk", 20); addFeature("lavaPoolsPerChunk", 0);
addFeature("waterLakesPerChunk", 0); addFeature("waterLakesPerChunk", 0);
addFeature("lavaLakesPerChunk", 0); addFeature("lavaLakesPerChunk", 0);