Removed villages and rivers from certain biomes
This commit is contained in:
parent
601c509a68
commit
102fb04a51
31 changed files with 64 additions and 2 deletions
|
@ -98,7 +98,7 @@ public class BOPBiome extends BiomeGenBase implements IExtendedBiome
|
||||||
|
|
||||||
this.canSpawnInBiome = conf.getBool("canSpawnInBiome", this.canSpawnInBiome);
|
this.canSpawnInBiome = conf.getBool("canSpawnInBiome", this.canSpawnInBiome);
|
||||||
this.canGenerateVillages = conf.getBool("canGenerateVillages", this.canGenerateVillages);
|
this.canGenerateVillages = conf.getBool("canGenerateVillages", this.canGenerateVillages);
|
||||||
this.canGenerateRivers = conf.getBool("canGenerateRivers", this.canGenerateVillages);
|
this.canGenerateRivers = conf.getBool("canGenerateRivers", this.canGenerateRivers);
|
||||||
|
|
||||||
// Allow weights to be overridden
|
// Allow weights to be overridden
|
||||||
IConfigObj confWeights = conf.getObject("weights");
|
IConfigObj confWeights = conf.getObject("weights");
|
||||||
|
|
|
@ -56,6 +56,8 @@ public class BiomeGenBambooForest extends BOPBiome
|
||||||
this.setColor(0xA3E053);
|
this.setColor(0xA3E053);
|
||||||
this.setTemperatureRainfall(1.2F, 0.9F);
|
this.setTemperatureRainfall(1.2F, 0.9F);
|
||||||
|
|
||||||
|
this.canGenerateVillages = false;
|
||||||
|
|
||||||
this.addWeight(BOPClimates.TROPICAL, 5);
|
this.addWeight(BOPClimates.TROPICAL, 5);
|
||||||
|
|
||||||
this.topBlock = Blocks.dirt.getDefaultState().withProperty(BlockDirt.VARIANT, BlockDirt.DirtType.PODZOL);
|
this.topBlock = Blocks.dirt.getDefaultState().withProperty(BlockDirt.VARIANT, BlockDirt.DirtType.PODZOL);
|
||||||
|
|
|
@ -54,6 +54,9 @@ public class BiomeGenBayou extends BOPBiome
|
||||||
this.skyColor = 0xACC4BC;
|
this.skyColor = 0xACC4BC;
|
||||||
this.seaFloorBlock = BOPBlocks.mud.getDefaultState();
|
this.seaFloorBlock = BOPBlocks.mud.getDefaultState();
|
||||||
|
|
||||||
|
this.canGenerateRivers = false;
|
||||||
|
this.canGenerateVillages = false;
|
||||||
|
|
||||||
this.addWeight(BOPClimates.HOT_SWAMP, 10);
|
this.addWeight(BOPClimates.HOT_SWAMP, 10);
|
||||||
|
|
||||||
this.spawnableWaterCreatureList.clear();
|
this.spawnableWaterCreatureList.clear();
|
||||||
|
|
|
@ -52,6 +52,8 @@ public class BiomeGenBog extends BOPBiome
|
||||||
this.topBlock = BOPBlocks.grass.getDefaultState().withProperty(BlockBOPGrass.VARIANT, BlockBOPGrass.BOPGrassType.LOAMY);
|
this.topBlock = BOPBlocks.grass.getDefaultState().withProperty(BlockBOPGrass.VARIANT, BlockBOPGrass.BOPGrassType.LOAMY);
|
||||||
this.fillerBlock = BOPBlocks.dirt.getDefaultState().withProperty(BlockBOPDirt.VARIANT, BlockBOPDirt.BOPDirtType.LOAMY);
|
this.fillerBlock = BOPBlocks.dirt.getDefaultState().withProperty(BlockBOPDirt.VARIANT, BlockBOPDirt.BOPDirtType.LOAMY);
|
||||||
|
|
||||||
|
this.canGenerateRivers = false;
|
||||||
|
|
||||||
this.addWeight(BOPClimates.COLD_SWAMP, 7);
|
this.addWeight(BOPClimates.COLD_SWAMP, 7);
|
||||||
|
|
||||||
this.spawnableCreatureList.clear();
|
this.spawnableCreatureList.clear();
|
||||||
|
|
|
@ -36,6 +36,7 @@ public class BiomeGenBorealForest extends BOPBiome
|
||||||
this.setTemperatureRainfall(0.5F, 0.6F);
|
this.setTemperatureRainfall(0.5F, 0.6F);
|
||||||
this.addWeight(BOPClimates.COOL_TEMPERATE, 10);
|
this.addWeight(BOPClimates.COOL_TEMPERATE, 10);
|
||||||
|
|
||||||
|
this.canGenerateVillages = false;
|
||||||
|
|
||||||
this.spawnableCreatureList.add(new SpawnListEntry(EntityWolf.class, 5, 4, 4));
|
this.spawnableCreatureList.add(new SpawnListEntry(EntityWolf.class, 5, 4, 4));
|
||||||
|
|
||||||
|
|
|
@ -40,6 +40,8 @@ public class BiomeGenCherryBlossomGrove extends BOPBiome
|
||||||
this.setColor(0xF88F8F);
|
this.setColor(0xF88F8F);
|
||||||
this.setTemperatureRainfall(0.6F, 0.8F);
|
this.setTemperatureRainfall(0.6F, 0.8F);
|
||||||
|
|
||||||
|
this.canGenerateVillages = false;
|
||||||
|
|
||||||
this.addWeight(BOPClimates.COOL_TEMPERATE, 3);
|
this.addWeight(BOPClimates.COOL_TEMPERATE, 3);
|
||||||
|
|
||||||
// flowers
|
// flowers
|
||||||
|
|
|
@ -38,6 +38,8 @@ public class BiomeGenConiferousForest extends BOPBiome
|
||||||
this.setColor(0x528F60);
|
this.setColor(0x528F60);
|
||||||
this.setTemperatureRainfall(0.5F, 0.5F);
|
this.setTemperatureRainfall(0.5F, 0.5F);
|
||||||
|
|
||||||
|
this.canGenerateVillages = false;
|
||||||
|
|
||||||
this.addWeight(BOPClimates.COOL_TEMPERATE, 10);
|
this.addWeight(BOPClimates.COOL_TEMPERATE, 10);
|
||||||
|
|
||||||
this.topBlock = BOPBlocks.grass.getDefaultState().withProperty(BlockBOPGrass.VARIANT, BlockBOPGrass.BOPGrassType.LOAMY);
|
this.topBlock = BOPBlocks.grass.getDefaultState().withProperty(BlockBOPGrass.VARIANT, BlockBOPGrass.BOPGrassType.LOAMY);
|
||||||
|
|
|
@ -28,6 +28,7 @@ public class BiomeGenCrag extends BOPBiome
|
||||||
|
|
||||||
this.canSpawnInBiome = false;
|
this.canSpawnInBiome = false;
|
||||||
this.canGenerateVillages = false;
|
this.canGenerateVillages = false;
|
||||||
|
this.canGenerateRivers = false;
|
||||||
|
|
||||||
this.addWeight(BOPClimates.WET_TEMPERATE, 3);
|
this.addWeight(BOPClimates.WET_TEMPERATE, 3);
|
||||||
|
|
||||||
|
|
|
@ -41,6 +41,8 @@ public class BiomeGenDeadForest extends BOPBiome
|
||||||
this.topBlock = BOPBlocks.grass.getDefaultState().withProperty(BlockBOPGrass.VARIANT, BlockBOPGrass.BOPGrassType.LOAMY);
|
this.topBlock = BOPBlocks.grass.getDefaultState().withProperty(BlockBOPGrass.VARIANT, BlockBOPGrass.BOPGrassType.LOAMY);
|
||||||
this.fillerBlock = BOPBlocks.dirt.getDefaultState().withProperty(BlockBOPDirt.VARIANT, BlockBOPDirt.BOPDirtType.LOAMY);
|
this.fillerBlock = BOPBlocks.dirt.getDefaultState().withProperty(BlockBOPDirt.VARIANT, BlockBOPDirt.BOPDirtType.LOAMY);
|
||||||
|
|
||||||
|
this.canGenerateVillages = false;
|
||||||
|
|
||||||
this.setColor(0xBCA165);
|
this.setColor(0xBCA165);
|
||||||
this.setTemperatureRainfall(0.4F, 0.3F);
|
this.setTemperatureRainfall(0.4F, 0.3F);
|
||||||
|
|
||||||
|
|
|
@ -52,6 +52,9 @@ public class BiomeGenDeadSwamp extends BOPBiome
|
||||||
this.topBlock = BOPBlocks.grass.getDefaultState().withProperty(BlockBOPGrass.VARIANT, BlockBOPGrass.BOPGrassType.LOAMY);
|
this.topBlock = BOPBlocks.grass.getDefaultState().withProperty(BlockBOPGrass.VARIANT, BlockBOPGrass.BOPGrassType.LOAMY);
|
||||||
this.fillerBlock = BOPBlocks.dirt.getDefaultState().withProperty(BlockBOPDirt.VARIANT, BlockBOPDirt.BOPDirtType.LOAMY);
|
this.fillerBlock = BOPBlocks.dirt.getDefaultState().withProperty(BlockBOPDirt.VARIANT, BlockBOPDirt.BOPDirtType.LOAMY);
|
||||||
|
|
||||||
|
this.canGenerateRivers = false;
|
||||||
|
this.canGenerateVillages = false;
|
||||||
|
|
||||||
this.addWeight(BOPClimates.COLD_SWAMP, 5);
|
this.addWeight(BOPClimates.COLD_SWAMP, 5);
|
||||||
|
|
||||||
this.spawnableCreatureList.clear();
|
this.spawnableCreatureList.clear();
|
||||||
|
|
|
@ -31,6 +31,8 @@ public class BiomeGenDeciduousForest extends BOPBiome
|
||||||
this.setTemperatureRainfall(0.6F, 0.8F);
|
this.setTemperatureRainfall(0.6F, 0.8F);
|
||||||
this.addWeight(BOPClimates.WARM_TEMPERATE, 10);
|
this.addWeight(BOPClimates.WARM_TEMPERATE, 10);
|
||||||
|
|
||||||
|
this.canGenerateVillages = false;
|
||||||
|
|
||||||
// trees & logs
|
// trees & logs
|
||||||
GeneratorWeighted treeGenerator = new GeneratorWeighted(18);
|
GeneratorWeighted treeGenerator = new GeneratorWeighted(18);
|
||||||
this.addGenerator("trees", GeneratorStage.TREE, treeGenerator);
|
this.addGenerator("trees", GeneratorStage.TREE, treeGenerator);
|
||||||
|
|
|
@ -45,6 +45,8 @@ public class BiomeGenDenseForest extends BOPBiome
|
||||||
this.setColor(8246897);
|
this.setColor(8246897);
|
||||||
this.setTemperatureRainfall(0.7F, 0.7F);
|
this.setTemperatureRainfall(0.7F, 0.7F);
|
||||||
|
|
||||||
|
this.canGenerateVillages = false;
|
||||||
|
|
||||||
this.addWeight(BOPClimates.WARM_TEMPERATE, 7);
|
this.addWeight(BOPClimates.WARM_TEMPERATE, 7);
|
||||||
|
|
||||||
this.topBlock = Blocks.grass.getDefaultState();
|
this.topBlock = Blocks.grass.getDefaultState();
|
||||||
|
|
|
@ -36,6 +36,8 @@ public class BiomeGenEucalyptusForest extends BOPBiome
|
||||||
this.setColor(0x9DCC70);
|
this.setColor(0x9DCC70);
|
||||||
this.setTemperatureRainfall(0.9F, 0.1F);
|
this.setTemperatureRainfall(0.9F, 0.1F);
|
||||||
|
|
||||||
|
this.canGenerateVillages = false;
|
||||||
|
|
||||||
this.addWeight(BOPClimates.SAVANNA, 7);
|
this.addWeight(BOPClimates.SAVANNA, 7);
|
||||||
|
|
||||||
// trees
|
// trees
|
||||||
|
|
|
@ -56,6 +56,8 @@ public class BiomeGenFen extends BOPBiome
|
||||||
this.setColor(0xBAC481);
|
this.setColor(0xBAC481);
|
||||||
this.setTemperatureRainfall(0.4F, 0.4F);
|
this.setTemperatureRainfall(0.4F, 0.4F);
|
||||||
|
|
||||||
|
this.canGenerateRivers = false;
|
||||||
|
|
||||||
this.addWeight(BOPClimates.WET_TEMPERATE, 10);
|
this.addWeight(BOPClimates.WET_TEMPERATE, 10);
|
||||||
|
|
||||||
// TODO: this.theBiomeDecorator.bopFeatures.waterSpringsPerChunk = 99;
|
// TODO: this.theBiomeDecorator.bopFeatures.waterSpringsPerChunk = 99;
|
||||||
|
|
|
@ -33,6 +33,8 @@ public class BiomeGenFlowerField extends BOPBiome
|
||||||
this.setColor(4044093);
|
this.setColor(4044093);
|
||||||
this.setTemperatureRainfall(0.6F, 0.7F);
|
this.setTemperatureRainfall(0.6F, 0.7F);
|
||||||
|
|
||||||
|
this.canGenerateVillages = false;
|
||||||
|
|
||||||
this.addWeight(BOPClimates.COOL_TEMPERATE, 3);
|
this.addWeight(BOPClimates.COOL_TEMPERATE, 3);
|
||||||
|
|
||||||
// flowers
|
// flowers
|
||||||
|
|
|
@ -50,6 +50,8 @@ public class BiomeGenFungiForest extends BOPBiome
|
||||||
this.waterColorMultiplier = 0x00FF2E;
|
this.waterColorMultiplier = 0x00FF2E;
|
||||||
this.setTemperatureRainfall(0.5F, 0.5F);
|
this.setTemperatureRainfall(0.5F, 0.5F);
|
||||||
|
|
||||||
|
this.canGenerateVillages = false;
|
||||||
|
|
||||||
this.addWeight(BOPClimates.WARM_TEMPERATE, 3);
|
this.addWeight(BOPClimates.WARM_TEMPERATE, 3);
|
||||||
|
|
||||||
this.spawnableCreatureList.clear();
|
this.spawnableCreatureList.clear();
|
||||||
|
|
|
@ -43,6 +43,8 @@ public class BiomeGenGarden extends BOPBiome
|
||||||
this.setTemperatureRainfall(0.7F, 0.8F);
|
this.setTemperatureRainfall(0.7F, 0.8F);
|
||||||
this.topBlock = BOPBlocks.grass.getDefaultState().withProperty(BlockBOPGrass.VARIANT, BlockBOPGrass.BOPGrassType.DAISY);
|
this.topBlock = BOPBlocks.grass.getDefaultState().withProperty(BlockBOPGrass.VARIANT, BlockBOPGrass.BOPGrassType.DAISY);
|
||||||
|
|
||||||
|
this.canGenerateVillages = false;
|
||||||
|
|
||||||
this.addWeight(BOPClimates.COOL_TEMPERATE, 1);
|
this.addWeight(BOPClimates.COOL_TEMPERATE, 1);
|
||||||
|
|
||||||
this.spawnableCreatureList.clear();
|
this.spawnableCreatureList.clear();
|
||||||
|
|
|
@ -27,6 +27,8 @@ public class BiomeGenGlacier extends BiomeGenArctic
|
||||||
|
|
||||||
this.setColor(0xB0BBD9);
|
this.setColor(0xB0BBD9);
|
||||||
|
|
||||||
|
this.canGenerateVillages = false;
|
||||||
|
|
||||||
this.topBlock = BOPBlocks.hard_ice.getDefaultState();
|
this.topBlock = BOPBlocks.hard_ice.getDefaultState();
|
||||||
this.fillerBlock = BOPBlocks.hard_ice.getDefaultState();
|
this.fillerBlock = BOPBlocks.hard_ice.getDefaultState();
|
||||||
|
|
||||||
|
|
|
@ -36,6 +36,8 @@ public class BiomeGenLavenderFields extends BOPBiome
|
||||||
this.setColor(11035852);
|
this.setColor(11035852);
|
||||||
this.setTemperatureRainfall(0.6F, 0.7F);
|
this.setTemperatureRainfall(0.6F, 0.7F);
|
||||||
|
|
||||||
|
this.canGenerateVillages = false;
|
||||||
|
|
||||||
this.addWeight(BOPClimates.WARM_TEMPERATE, 3);
|
this.addWeight(BOPClimates.WARM_TEMPERATE, 3);
|
||||||
|
|
||||||
// flowers
|
// flowers
|
||||||
|
|
|
@ -37,6 +37,7 @@ public class BiomeGenMapleWoods extends BOPBiome
|
||||||
this.setTemperatureRainfall(0.2F, 0.8F);
|
this.setTemperatureRainfall(0.2F, 0.8F);
|
||||||
this.addWeight(BOPClimates.COOL_TEMPERATE, 10);
|
this.addWeight(BOPClimates.COOL_TEMPERATE, 10);
|
||||||
|
|
||||||
|
this.canGenerateVillages = false;
|
||||||
|
|
||||||
this.spawnableCreatureList.add(new SpawnListEntry(EntityWolf.class, 5, 4, 4));
|
this.spawnableCreatureList.add(new SpawnListEntry(EntityWolf.class, 5, 4, 4));
|
||||||
|
|
||||||
|
|
|
@ -49,6 +49,9 @@ public class BiomeGenMarsh extends BOPBiome
|
||||||
this.setColor(0x66A06E);
|
this.setColor(0x66A06E);
|
||||||
this.setTemperatureRainfall(0.5F, 0.9F);
|
this.setTemperatureRainfall(0.5F, 0.9F);
|
||||||
|
|
||||||
|
this.canGenerateRivers = false;
|
||||||
|
this.canGenerateVillages = false;
|
||||||
|
|
||||||
this.addWeight(BOPClimates.COLD_SWAMP, 7);
|
this.addWeight(BOPClimates.COLD_SWAMP, 7);
|
||||||
|
|
||||||
this.spawnableCreatureList.clear(); // none of your regular farmyard critters here
|
this.spawnableCreatureList.clear(); // none of your regular farmyard critters here
|
||||||
|
|
|
@ -43,6 +43,8 @@ public class BiomeGenMoor extends BOPBiome
|
||||||
this.topBlock = BOPBlocks.grass.getDefaultState().withProperty(BlockBOPGrass.VARIANT, BlockBOPGrass.BOPGrassType.LOAMY);
|
this.topBlock = BOPBlocks.grass.getDefaultState().withProperty(BlockBOPGrass.VARIANT, BlockBOPGrass.BOPGrassType.LOAMY);
|
||||||
this.fillerBlock = BOPBlocks.dirt.getDefaultState().withProperty(BlockBOPDirt.VARIANT, BlockBOPDirt.BOPDirtType.LOAMY);
|
this.fillerBlock = BOPBlocks.dirt.getDefaultState().withProperty(BlockBOPDirt.VARIANT, BlockBOPDirt.BOPDirtType.LOAMY);
|
||||||
|
|
||||||
|
this.canGenerateVillages = false;
|
||||||
|
|
||||||
this.addWeight(BOPClimates.COLD_SWAMP, 7);
|
this.addWeight(BOPClimates.COLD_SWAMP, 7);
|
||||||
|
|
||||||
this.spawnableCreatureList.clear();
|
this.spawnableCreatureList.clear();
|
||||||
|
|
|
@ -74,11 +74,14 @@ public class BiomeGenMountain extends BOPBiome
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.canGenerateVillages = false;
|
||||||
this.setColor(0x80A355);
|
this.setColor(0x80A355);
|
||||||
this.setTemperatureRainfall(0.5F, 0.1F);
|
this.setTemperatureRainfall(0.5F, 0.1F);
|
||||||
|
|
||||||
if (type == MountainType.PEAKS)
|
if (type == MountainType.PEAKS)
|
||||||
{
|
{
|
||||||
|
this.canGenerateVillages = false;
|
||||||
|
|
||||||
// peaks are created in the biome gen layer, foothills don't have a weight - they only appear later around the peaks (in the biome edge layer)
|
// peaks are created in the biome gen layer, foothills don't have a weight - they only appear later around the peaks (in the biome edge layer)
|
||||||
this.addWeight(BOPClimates.DRY_TEMPERATE, 10);
|
this.addWeight(BOPClimates.DRY_TEMPERATE, 10);
|
||||||
|
|
||||||
|
|
|
@ -34,6 +34,7 @@ public class BiomeGenOriginValley extends BOPBiome
|
||||||
this.skyColor = 8441086;
|
this.skyColor = 8441086;
|
||||||
|
|
||||||
this.canGenerateVillages = false;
|
this.canGenerateVillages = false;
|
||||||
|
this.canGenerateRivers = false;
|
||||||
|
|
||||||
this.addWeight(BOPClimates.WARM_TEMPERATE, 1);
|
this.addWeight(BOPClimates.WARM_TEMPERATE, 1);
|
||||||
|
|
||||||
|
|
|
@ -47,6 +47,9 @@ public class BiomeGenQuagmire extends BOPBiome
|
||||||
this.skyColor = 0xBDC4BE;
|
this.skyColor = 0xBDC4BE;
|
||||||
this.seaFloorBlock = BOPBlocks.mud.getDefaultState();
|
this.seaFloorBlock = BOPBlocks.mud.getDefaultState();
|
||||||
|
|
||||||
|
this.canGenerateRivers = false;
|
||||||
|
this.canGenerateVillages = false;
|
||||||
|
|
||||||
this.addWeight(BOPClimates.COLD_SWAMP, 5);
|
this.addWeight(BOPClimates.COLD_SWAMP, 5);
|
||||||
|
|
||||||
this.spawnableWaterCreatureList.clear();
|
this.spawnableWaterCreatureList.clear();
|
||||||
|
|
|
@ -40,6 +40,8 @@ public class BiomeGenRainforest extends BOPBiome
|
||||||
this.setTemperatureRainfall(1.0F, 1.0F);
|
this.setTemperatureRainfall(1.0F, 1.0F);
|
||||||
this.addWeight(BOPClimates.TROPICAL, 10);
|
this.addWeight(BOPClimates.TROPICAL, 10);
|
||||||
|
|
||||||
|
this.canGenerateVillages = false;
|
||||||
|
|
||||||
this.spawnableCreatureList.add(new SpawnListEntry(EntityOcelot.class, 2, 1, 1));
|
this.spawnableCreatureList.add(new SpawnListEntry(EntityOcelot.class, 2, 1, 1));
|
||||||
|
|
||||||
// trees & logs
|
// trees & logs
|
||||||
|
|
|
@ -32,6 +32,9 @@ public class BiomeGenSacredSprings extends BOPBiome
|
||||||
this.setColor(39259);
|
this.setColor(39259);
|
||||||
this.setTemperatureRainfall(1.2F, 0.9F);
|
this.setTemperatureRainfall(1.2F, 0.9F);
|
||||||
|
|
||||||
|
this.canGenerateRivers = false;
|
||||||
|
this.canGenerateVillages = false;
|
||||||
|
|
||||||
this.addWeight(BOPClimates.WARM_TEMPERATE, 3);
|
this.addWeight(BOPClimates.WARM_TEMPERATE, 3);
|
||||||
|
|
||||||
// trees
|
// trees
|
||||||
|
|
|
@ -34,6 +34,7 @@ public class BiomeGenSeasonalForest extends BOPBiome
|
||||||
this.setTemperatureRainfall(0.5F, 0.8F);
|
this.setTemperatureRainfall(0.5F, 0.8F);
|
||||||
this.addWeight(BOPClimates.COOL_TEMPERATE, 7);
|
this.addWeight(BOPClimates.COOL_TEMPERATE, 7);
|
||||||
|
|
||||||
|
this.canGenerateVillages = false;
|
||||||
|
|
||||||
this.spawnableCreatureList.add(new SpawnListEntry(EntityWolf.class, 5, 4, 4));
|
this.spawnableCreatureList.add(new SpawnListEntry(EntityWolf.class, 5, 4, 4));
|
||||||
|
|
||||||
|
|
|
@ -39,6 +39,8 @@ public class BiomeGenSnowyConiferousForest extends BOPBiome
|
||||||
this.setEnableSnow();
|
this.setEnableSnow();
|
||||||
this.setTemperatureRainfall(0.0F, 0.5F);
|
this.setTemperatureRainfall(0.0F, 0.5F);
|
||||||
|
|
||||||
|
this.canGenerateVillages = false;
|
||||||
|
|
||||||
this.addWeight(BOPClimates.TUNDRA, 10);
|
this.addWeight(BOPClimates.TUNDRA, 10);
|
||||||
|
|
||||||
this.topBlock = BOPBlocks.grass.getDefaultState().withProperty(BlockBOPGrass.VARIANT, BlockBOPGrass.BOPGrassType.LOAMY);
|
this.topBlock = BOPBlocks.grass.getDefaultState().withProperty(BlockBOPGrass.VARIANT, BlockBOPGrass.BOPGrassType.LOAMY);
|
||||||
|
|
|
@ -40,6 +40,8 @@ public class BiomeGenThicket extends BOPBiome
|
||||||
this.setColor(7248193);
|
this.setColor(7248193);
|
||||||
this.setTemperatureRainfall(0.6F, 0.2F);
|
this.setTemperatureRainfall(0.6F, 0.2F);
|
||||||
|
|
||||||
|
this.canGenerateVillages = false;
|
||||||
|
|
||||||
this.addWeight(BOPClimates.DRY_TEMPERATE, 5);
|
this.addWeight(BOPClimates.DRY_TEMPERATE, 5);
|
||||||
|
|
||||||
// trees
|
// trees
|
||||||
|
|
|
@ -57,6 +57,9 @@ public class BiomeGenWetland extends BOPBiome
|
||||||
this.waterColorMultiplier = 0x636084;
|
this.waterColorMultiplier = 0x636084;
|
||||||
this.seaFloorBlock = BOPBlocks.mud.getDefaultState();
|
this.seaFloorBlock = BOPBlocks.mud.getDefaultState();
|
||||||
|
|
||||||
|
this.canGenerateRivers = false;
|
||||||
|
this.canGenerateVillages = false;
|
||||||
|
|
||||||
this.addWeight(BOPClimates.WET_TEMPERATE, 10);
|
this.addWeight(BOPClimates.WET_TEMPERATE, 10);
|
||||||
|
|
||||||
this.spawnableWaterCreatureList.clear();
|
this.spawnableWaterCreatureList.clear();
|
||||||
|
|
Loading…
Reference in a new issue