Hello, i have issues with replacing the default BiomeDecorator with custom one, i register the event listener with:
Code:
MinecraftForge.TERRAIN_GEN_BUS.register(new HighlandsEvent());
and the code:
Code:
@ForgeSubscribe
public void onCreateDecorator(CreateDecorator event)
{
event.newBiomeDecorator = new HighlandsDecorator(event.biome);
}
Can someone verify if there is a bug in forge or if i am trying to code it incorrectly?