Fixed flower weights so Adubbz would shut up
This commit is contained in:
parent
0c08ba9cf5
commit
37ec8f5690
25 changed files with 55 additions and 55 deletions
|
@ -52,7 +52,7 @@ public class BiomeGenBorealForest extends BOPBiome
|
|||
{
|
||||
HashMap<WorldGenerator, Double> flowerMap = new HashMap();
|
||||
|
||||
flowerMap.put(new WorldGenBOPDoubleFlora(Blocks.double_plant, Blocks.double_plant, 4, 10, 5), 1D);
|
||||
flowerMap.put(new WorldGenBOPDoubleFlora(Blocks.double_plant, Blocks.double_plant, 4, 10, 5), 10D);
|
||||
|
||||
return flowerMap;
|
||||
}
|
||||
|
|
|
@ -49,7 +49,7 @@ public class BiomeGenBrushland extends BOPBiome
|
|||
{
|
||||
HashMap<WorldGenerator, Double> flowerMap = new HashMap();
|
||||
|
||||
flowerMap.put(new WorldGenBOPFlora(Blocks.red_flower, 2), 0.5D);
|
||||
flowerMap.put(new WorldGenBOPFlora(Blocks.red_flower, 2), 5D);
|
||||
|
||||
return flowerMap;
|
||||
}
|
||||
|
|
|
@ -61,8 +61,8 @@ public class BiomeGenChaparral extends BOPBiome
|
|||
{
|
||||
HashMap<WorldGenerator, Double> flowerMap = new HashMap();
|
||||
|
||||
flowerMap.put(new WorldGenBOPDoubleFlora(Blocks.double_plant, Blocks.double_plant, 4, 10, 5), 1D);
|
||||
flowerMap.put(new WorldGenBOPDoubleFlora(Blocks.double_plant, Blocks.double_plant, 1, 7, 5), 0.5D);
|
||||
flowerMap.put(new WorldGenBOPDoubleFlora(Blocks.double_plant, Blocks.double_plant, 4, 10, 5), 8D);
|
||||
flowerMap.put(new WorldGenBOPDoubleFlora(Blocks.double_plant, Blocks.double_plant, 1, 7, 5), 4D);
|
||||
|
||||
return flowerMap;
|
||||
}
|
||||
|
|
|
@ -51,10 +51,10 @@ public class BiomeGenCherryBlossomGrove extends BOPBiome
|
|||
{
|
||||
HashMap<WorldGenerator, Double> flowerMap = new HashMap();
|
||||
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 6), 3D);
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 9), 6D);
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 0), 5D);
|
||||
flowerMap.put(new WorldGenBOPDoubleFlora(Blocks.double_plant, Blocks.double_plant, 1, 7, 5), 1D);
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 6), 12D);
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 9), 8D);
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 0), 6D);
|
||||
flowerMap.put(new WorldGenBOPDoubleFlora(Blocks.double_plant, Blocks.double_plant, 1, 7, 5), 4D);
|
||||
|
||||
return flowerMap;
|
||||
}
|
||||
|
|
|
@ -58,7 +58,7 @@ public class BiomeGenConiferousForestSnow extends BOPBiome
|
|||
{
|
||||
HashMap<WorldGenerator, Double> flowerMap = new HashMap();
|
||||
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 8), 1D);
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 8), 8D);
|
||||
|
||||
return flowerMap;
|
||||
}
|
||||
|
|
|
@ -67,7 +67,7 @@ public class BiomeGenFen extends BOPBiome
|
|||
{
|
||||
HashMap<WorldGenerator, Double> flowerMap = new HashMap();
|
||||
|
||||
flowerMap.put(new WorldGenBOPFlora(Blocks.red_flower, 2), 0.5D);
|
||||
flowerMap.put(new WorldGenBOPFlora(Blocks.red_flower, 2), 6D);
|
||||
|
||||
return flowerMap;
|
||||
}
|
||||
|
|
|
@ -56,8 +56,8 @@ public class BiomeGenGrove extends BOPBiome
|
|||
HashMap<WorldGenerator, Double> flowerMap = new HashMap();
|
||||
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 0), 16D);
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 9), 3D);
|
||||
flowerMap.put(new WorldGenBOPDoubleFlora(Blocks.double_plant, Blocks.double_plant, 5, 11, 3), 2D);
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 9), 6D);
|
||||
flowerMap.put(new WorldGenBOPDoubleFlora(Blocks.double_plant, Blocks.double_plant, 5, 11, 3), 4D);
|
||||
|
||||
return flowerMap;
|
||||
}
|
||||
|
|
|
@ -56,9 +56,9 @@ public class BiomeGenHeathland extends BOPBiome
|
|||
{
|
||||
HashMap<WorldGenerator, Double> flowerMap = new HashMap();
|
||||
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 7), 1D);
|
||||
flowerMap.put(new WorldGenBOPFlora(Blocks.red_flower, 2), 0.5D);
|
||||
flowerMap.put(new WorldGenBOPDoubleFlora(Blocks.double_plant, Blocks.double_plant, 1, 7, 5), 0.5D);
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 7), 8D);
|
||||
flowerMap.put(new WorldGenBOPFlora(Blocks.red_flower, 2), 6D);
|
||||
flowerMap.put(new WorldGenBOPDoubleFlora(Blocks.double_plant, Blocks.double_plant, 1, 7, 5), 4D);
|
||||
|
||||
return flowerMap;
|
||||
}
|
||||
|
|
|
@ -50,7 +50,7 @@ public class BiomeGenJadeCliffs extends BOPBiome
|
|||
{
|
||||
HashMap<WorldGenerator, Double> flowerMap = new HashMap();
|
||||
|
||||
flowerMap.put(new WorldGenBOPDoubleFlora(Blocks.double_plant, Blocks.double_plant, 1, 7, 5), 0.5D);
|
||||
flowerMap.put(new WorldGenBOPDoubleFlora(Blocks.double_plant, Blocks.double_plant, 1, 7, 5), 6D);
|
||||
|
||||
return flowerMap;
|
||||
}
|
||||
|
|
|
@ -68,8 +68,8 @@ public class BiomeGenLushDesert extends BOPBiome
|
|||
{
|
||||
HashMap<WorldGenerator, Double> flowerMap = new HashMap();
|
||||
|
||||
flowerMap.put(new WorldGenBOPDoubleFlora(Blocks.double_plant, Blocks.double_plant, 4, 10, 5), 0.5D);
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 7), 1D);
|
||||
flowerMap.put(new WorldGenBOPDoubleFlora(Blocks.double_plant, Blocks.double_plant, 4, 10, 5), 4D);
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 7), 8D);
|
||||
|
||||
return flowerMap;
|
||||
}
|
||||
|
|
|
@ -60,9 +60,9 @@ public class BiomeGenLushSwamp extends BOPBiome
|
|||
{
|
||||
HashMap<WorldGenerator, Double> flowerMap = new HashMap();
|
||||
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 4), 1D);
|
||||
flowerMap.put(new WorldGenBOPFlora(Blocks.red_flower, 2), 0.5D);
|
||||
flowerMap.put(new WorldGenBOPFlora(Blocks.red_flower, 1), 0.75D);
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 4), 8D);
|
||||
flowerMap.put(new WorldGenBOPFlora(Blocks.red_flower, 2), 4D);
|
||||
flowerMap.put(new WorldGenBOPFlora(Blocks.red_flower, 1), 6D);
|
||||
|
||||
return flowerMap;
|
||||
}
|
||||
|
|
|
@ -57,10 +57,10 @@ public class BiomeGenMeadow extends BOPBiome
|
|||
{
|
||||
HashMap<WorldGenerator, Double> flowerMap = new HashMap();
|
||||
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 0), 3D);
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 4), 1D);
|
||||
flowerMap.put(new WorldGenBOPDoubleFlora(Blocks.double_plant, Blocks.double_plant, 5, 11, 3), 0.5D);
|
||||
flowerMap.put(new WorldGenBOPDoubleFlora(Blocks.double_plant, Blocks.double_plant, 1, 7, 5), 0.5D);
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 0), 10D);
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 4), 8D);
|
||||
flowerMap.put(new WorldGenBOPDoubleFlora(Blocks.double_plant, Blocks.double_plant, 5, 11, 3), 5D);
|
||||
flowerMap.put(new WorldGenBOPDoubleFlora(Blocks.double_plant, Blocks.double_plant, 1, 7, 5), 4D);
|
||||
|
||||
return flowerMap;
|
||||
}
|
||||
|
|
|
@ -42,7 +42,7 @@ public class BiomeGenMoor extends BOPBiome
|
|||
this.bopWorldFeatures.mudPerChunk = 1;
|
||||
this.bopWorldFeatures.waterLakesPerChunk = 10;
|
||||
this.bopWorldFeatures.bopFlowersPerChunk = 6;
|
||||
this.bopWorldFeatures.koruPerChunk = 3;
|
||||
this.bopWorldFeatures.koruPerChunk = 6;
|
||||
this.bopWorldFeatures.generatePumpkins = false;
|
||||
}
|
||||
|
||||
|
@ -51,7 +51,7 @@ public class BiomeGenMoor extends BOPBiome
|
|||
{
|
||||
HashMap<WorldGenerator, Double> flowerMap = new HashMap();
|
||||
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 1), 1D);
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 1), 14D);
|
||||
|
||||
return flowerMap;
|
||||
}
|
||||
|
|
|
@ -68,12 +68,12 @@ public class BiomeGenMysticGrove extends BOPBiome
|
|||
{
|
||||
HashMap<WorldGenerator, Double> flowerMap = new HashMap();
|
||||
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 6), 3D);
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 3), 4D);
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 4), 1D);
|
||||
flowerMap.put(new WorldGenBOPFlora(Blocks.red_flower, 3), 2D);
|
||||
flowerMap.put(new WorldGenBOPFlora(Blocks.red_flower, 2), 1D);
|
||||
flowerMap.put(new WorldGenBOPDoubleFlora(Blocks.double_plant, Blocks.double_plant, 1, 7, 5), 1D);
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 6), 12D);
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 3), 10D);
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 4), 8D);
|
||||
flowerMap.put(new WorldGenBOPFlora(Blocks.red_flower, 3), 6D);
|
||||
flowerMap.put(new WorldGenBOPFlora(Blocks.red_flower, 2), 6D);
|
||||
flowerMap.put(new WorldGenBOPDoubleFlora(Blocks.double_plant, Blocks.double_plant, 1, 7, 5), 4D);
|
||||
|
||||
return flowerMap;
|
||||
}
|
||||
|
|
|
@ -52,8 +52,8 @@ public class BiomeGenPrairie extends BOPBiome
|
|||
{
|
||||
HashMap<WorldGenerator, Double> flowerMap = new HashMap();
|
||||
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers2"), 4), 1D);
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 9), 0.5D);
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers2"), 4), 12D);
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 9), 6D);
|
||||
|
||||
return flowerMap;
|
||||
}
|
||||
|
|
|
@ -54,10 +54,10 @@ public class BiomeGenRainforest extends BOPBiome
|
|||
{
|
||||
HashMap<WorldGenerator, Double> flowerMap = new HashMap();
|
||||
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 6), 3D);
|
||||
flowerMap.put(new WorldGenBOPFlora(Blocks.red_flower, 1), 0.5D);
|
||||
flowerMap.put(new WorldGenBOPDoubleFlora(Blocks.double_plant, Blocks.double_plant, 4, 10, 5), 1D);
|
||||
flowerMap.put(new WorldGenBOPDoubleFlora(Blocks.double_plant, Blocks.double_plant, 1, 7, 5), 0.5D);
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 6), 12D);
|
||||
flowerMap.put(new WorldGenBOPFlora(Blocks.red_flower, 1), 6D);
|
||||
flowerMap.put(new WorldGenBOPDoubleFlora(Blocks.double_plant, Blocks.double_plant, 4, 10, 5), 4D);
|
||||
flowerMap.put(new WorldGenBOPDoubleFlora(Blocks.double_plant, Blocks.double_plant, 1, 7, 5), 6D);
|
||||
|
||||
return flowerMap;
|
||||
}
|
||||
|
|
|
@ -53,8 +53,8 @@ public class BiomeGenRedwoodForest extends BOPBiome
|
|||
{
|
||||
HashMap<WorldGenerator, Double> flowerMap = new HashMap();
|
||||
|
||||
flowerMap.put(new WorldGenBOPDoubleFlora(Blocks.double_plant, Blocks.double_plant, 4, 10, 5), 1D);
|
||||
flowerMap.put(new WorldGenBOPFlora(Blocks.red_flower, 1), 0.5D);
|
||||
flowerMap.put(new WorldGenBOPDoubleFlora(Blocks.double_plant, Blocks.double_plant, 4, 10, 5), 10D);
|
||||
flowerMap.put(new WorldGenBOPFlora(Blocks.red_flower, 1), 8D);
|
||||
|
||||
return flowerMap;
|
||||
}
|
||||
|
|
|
@ -55,9 +55,9 @@ public class BiomeGenSacredSprings extends BOPBiome
|
|||
{
|
||||
HashMap<WorldGenerator, Double> flowerMap = new HashMap();
|
||||
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 6), 3D);
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 6), 10D);
|
||||
flowerMap.put(new WorldGenBOPFlora(Blocks.red_flower, 1), 6D);
|
||||
flowerMap.put(new WorldGenBOPDoubleFlora(Blocks.double_plant, Blocks.double_plant, 5, 11, 5), 1D);
|
||||
flowerMap.put(new WorldGenBOPDoubleFlora(Blocks.double_plant, Blocks.double_plant, 5, 11, 5), 5D);
|
||||
|
||||
return flowerMap;
|
||||
}
|
||||
|
|
|
@ -54,7 +54,7 @@ public class BiomeGenShrubland extends BOPBiome
|
|||
{
|
||||
HashMap<WorldGenerator, Double> flowerMap = new HashMap();
|
||||
|
||||
flowerMap.put(new WorldGenBOPFlora(Blocks.red_flower, 2), 0.5D);
|
||||
flowerMap.put(new WorldGenBOPFlora(Blocks.red_flower, 2), 4D);
|
||||
|
||||
return flowerMap;
|
||||
}
|
||||
|
|
|
@ -54,7 +54,7 @@ public class BiomeGenSpruceWoods extends BOPBiome
|
|||
{
|
||||
HashMap<WorldGenerator, Double> flowerMap = new HashMap();
|
||||
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers2"), 5), 1D);
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers2"), 5), 15D);
|
||||
|
||||
return flowerMap;
|
||||
}
|
||||
|
|
|
@ -66,7 +66,7 @@ public class BiomeGenTropicalRainforest extends BOPBiome
|
|||
{
|
||||
HashMap<WorldGenerator, Double> flowerMap = new HashMap();
|
||||
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 5), 1D);
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 5), 12D);
|
||||
|
||||
return flowerMap;
|
||||
}
|
||||
|
|
|
@ -62,11 +62,11 @@ public class BiomeGenTropics extends BOPBiome
|
|||
{
|
||||
HashMap<WorldGenerator, Double> flowerMap = new HashMap();
|
||||
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 9), 0.5D);
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 5), 0.75D);
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers2"), 0), 5D);
|
||||
flowerMap.put(new WorldGenBOPFlora(Blocks.red_flower, 1), 0.5D);
|
||||
flowerMap.put(new WorldGenBOPDoubleFlora(Blocks.double_plant, Blocks.double_plant, 4, 10, 5), 1D);
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 9), 8D);
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 5), 10D);
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers2"), 0), 15D);
|
||||
flowerMap.put(new WorldGenBOPFlora(Blocks.red_flower, 1), 7D);
|
||||
flowerMap.put(new WorldGenBOPDoubleFlora(Blocks.double_plant, Blocks.double_plant, 4, 10, 5), 6D);
|
||||
|
||||
return flowerMap;
|
||||
}
|
||||
|
|
|
@ -55,7 +55,7 @@ public class BiomeGenTundra extends BOPBiome
|
|||
{
|
||||
HashMap<WorldGenerator, Double> flowerMap = new HashMap();
|
||||
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 8), 1D);
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 8), 4D);
|
||||
|
||||
return flowerMap;
|
||||
}
|
||||
|
|
|
@ -78,8 +78,8 @@ public class BiomeGenWetland extends BOPBiome
|
|||
{
|
||||
HashMap<WorldGenerator, Double> flowerMap = new HashMap();
|
||||
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 1), 1D);
|
||||
flowerMap.put(new WorldGenBOPFlora(Blocks.red_flower, 1), 0.5D);
|
||||
flowerMap.put(new WorldGenBOPFlora(BOPBlockHelper.get("flowers"), 1), 10D);
|
||||
flowerMap.put(new WorldGenBOPFlora(Blocks.red_flower, 1), 6D);
|
||||
|
||||
return flowerMap;
|
||||
}
|
||||
|
|
|
@ -54,7 +54,7 @@ public class BiomeGenWoodland extends BOPBiome
|
|||
{
|
||||
HashMap<WorldGenerator, Double> flowerMap = new HashMap();
|
||||
|
||||
flowerMap.put(new WorldGenBOPDoubleFlora(Blocks.double_plant, Blocks.double_plant, 4, 10, 5), 1D);
|
||||
flowerMap.put(new WorldGenBOPDoubleFlora(Blocks.double_plant, Blocks.double_plant, 4, 10, 5), 6D);
|
||||
|
||||
return flowerMap;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue