diff --git a/src/main/java/com/gregtechceu/gtceu/common/data/GTBlocks.java b/src/main/java/com/gregtechceu/gtceu/common/data/GTBlocks.java index c05e86871f..a91932797f 100644 --- a/src/main/java/com/gregtechceu/gtceu/common/data/GTBlocks.java +++ b/src/main/java/com/gregtechceu/gtceu/common/data/GTBlocks.java @@ -1427,6 +1427,10 @@ private static void initializeCobbleReplacements() { registerCobbleBlock(TagPrefix.oreAndesite, Blocks.ANDESITE::defaultBlockState); registerCobbleBlock(TagPrefix.oreDiorite, Blocks.DIORITE::defaultBlockState); registerCobbleBlock(TagPrefix.oreGranite, Blocks.GRANITE::defaultBlockState); + registerCobbleBlock(TagPrefix.oreRedGranite, + STONE_BLOCKS.get(StoneBlockType.COBBLE, StoneTypes.RED_GRANITE)::getDefaultState); + registerCobbleBlock(TagPrefix.oreMarble, + STONE_BLOCKS.get(StoneBlockType.COBBLE, StoneTypes.MARBLE)::getDefaultState); registerCobbleBlock(TagPrefix.oreSand, Blocks.SAND::defaultBlockState); registerCobbleBlock(TagPrefix.oreGravel, Blocks.GRAVEL::defaultBlockState); registerCobbleBlock(TagPrefix.oreRedSand, Blocks.RED_SAND::defaultBlockState);