Fixed missing grass in the Steppe

This commit is contained in:
Adubbz 2016-01-04 20:11:35 +11:00
parent a2c0a16f92
commit 3bdf3bfd46

View file

@ -42,7 +42,7 @@ public class BiomeGenSteppe extends BOPBiome
this.addGenerator("dead_bushes", GeneratorStage.DEAD_BUSH,(new GeneratorFlora.Builder()).amountPerChunk(0.3F).with(Blocks.deadbush.getDefaultState()).generationAttempts(4).create());
// grasses
this.addGenerator("shrubs", GeneratorStage.GRASS,(new GeneratorGrass.Builder()).amountPerChunk(1.5F).with(BlockBOPPlant.paging.getVariantState(BOPPlants.SHORTGRASS)).create());
this.addGenerator("shrubs", GeneratorStage.GRASS,(new GeneratorGrass.Builder()).amountPerChunk(15).with(BlockBOPPlant.paging.getVariantState(BOPPlants.SHORTGRASS)).create());
// gem
this.addGenerator("ruby", GeneratorStage.SAND, (new GeneratorOreSingle.Builder()).amountPerChunk(12).with(BOPGems.RUBY).create());