Tweaked the grass color of the Origin Hills

This commit is contained in:
Forstride 2020-02-09 06:39:35 -05:00
parent a18aeee5c7
commit b9aa7d96ca
2 changed files with 3 additions and 3 deletions

View File

@ -86,7 +86,7 @@ public class OriginBeachBiome extends BiomeBOP
@Override
public int getGrassColor(double x, double z)
{
return 0xA2FF5F;
return 0x9AFF5F;
}
@OnlyIn(Dist.CLIENT)

View File

@ -52,7 +52,7 @@ public class OriginHillsBiome extends BiomeBOP
// Vegetation
this.addFeature(GenerationStage.Decoration.VEGETAL_DECORATION, Feature.RANDOM_SELECTOR.configured(new MultipleRandomFeatureConfig(ImmutableList.of(BOPBiomeFeatures.BIG_ORIGIN_TREE.configured(DefaultBiomeFeatures.NORMAL_TREE_CONFIG).weighted(0.1F)), BOPBiomeFeatures.ORIGIN_TREE.configured(DefaultBiomeFeatures.NORMAL_TREE_CONFIG))).decorated(Placement.COUNT_EXTRA_HEIGHTMAP.configured(new AtSurfaceWithExtraConfig(3, 0.4F, 1))));
this.addFeature(GenerationStage.Decoration.VEGETAL_DECORATION, BOPBiomeFeatures.ORIGIN_FLOWERS.configured(IFeatureConfig.NONE).decorated(Placement.COUNT_HEIGHTMAP_32.configured(new FrequencyConfig(3))));
this.addFeature(GenerationStage.Decoration.VEGETAL_DECORATION, BOPBiomeFeatures.ORIGIN_FLOWERS.configured(IFeatureConfig.NONE).decorated(Placement.COUNT_HEIGHTMAP_32.configured(new FrequencyConfig(4))));
this.addFeature(GenerationStage.Decoration.VEGETAL_DECORATION, Feature.RANDOM_PATCH.configured(DefaultBiomeFeatures.SUGAR_CANE_CONFIG).decorated(Placement.COUNT_HEIGHTMAP_DOUBLE.configured(new FrequencyConfig(15))));
////////////////////////////////////////////////////////////
@ -87,7 +87,7 @@ public class OriginHillsBiome extends BiomeBOP
@Override
public int getGrassColor(double x, double z)
{
return 0xA2FF5F;
return 0x9AFF5F;
}
@OnlyIn(Dist.CLIENT)