@SubscribeEvent
public static void registerBlocks(final RegistryEvent.Register<Block> event) {
event.getRegistry().registerAll(
BlockList.carbon_ore = new Block(Block.Properties.create(Material.IRON).hardnessAndResistance(6.0f, 8.0f).lightValue(7).sound(SoundType.STONE).harvestLevel(6)).setRegistryName(location("carbon_ore"))
);
logger.info("Blocks registered");
}
This is my ore block, I set the harvest level int up to 20 and there is no change, what am I doing wrong?