I'm trying to create a biome with a nice light blue tint to grass, similar to the Mystic Grove from Biomes o' Pleanty. But what I've found is either I'm not using this.setcolor() or some other biome color-izer correctly, or it is impossible without a custom foliage file. So what do I have to do to get this to work the way I want it to? Thanks!
Here's my code for the biome:
package com.camp.world;
import net.minecraft.world.biome.BiomeGenBase;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
public class BiomeMysticForest extends BiomeGenBase {
private static final Height biomeHeight = new Height(0.1F, 0.2F);
public BiomeMysticForest(int id) {
super(id);
this.setHeight(biomeHeight);
this.setColor(6937835);
this.setTemperatureRainfall(0.7F, 1.0F);
this.waterColorMultiplier = 8874485;
this.theBiomeDecorator.treesPerChunk = 9;
this.theBiomeDecorator.grassPerChunk = 15;
}
public int getBiomeGrassColor(int p_150558_1_, int p_150558_2_, int p_150558_3_)
{
return 6937835;
}
public int getBiomeFoliageColor(int x, int y, int z)
{
return 5954640;
}