I had the same issue, registering VANILLA_ITEMS on the mod event bus made it work.
This goes into your class with VANILLA_ITEMS (I called mine ModChangeVanillaBlocks):
public static void register(IEventBus eventBus)
{
VANILLA_ITEMS.register(eventBus);
}
And then wherever your event bus is in your main mod class, put:
ModChangeVanillaBlocks.register(modEventBus);
I hope that helps, I suck at java but if that doesn't work I can share more of my code
17 replies
Important Information
By using this site, you agree to our Terms of Use.