Skip to content

Commit d7a411b

Browse files
authored
Add missing rock types to initializeCobbleReplacements() (#4329)
1 parent bf67107 commit d7a411b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/main/java/com/gregtechceu/gtceu/common/data/GTBlocks.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1427,6 +1427,10 @@ private static void initializeCobbleReplacements() {
14271427
registerCobbleBlock(TagPrefix.oreAndesite, Blocks.ANDESITE::defaultBlockState);
14281428
registerCobbleBlock(TagPrefix.oreDiorite, Blocks.DIORITE::defaultBlockState);
14291429
registerCobbleBlock(TagPrefix.oreGranite, Blocks.GRANITE::defaultBlockState);
1430+
registerCobbleBlock(TagPrefix.oreRedGranite,
1431+
STONE_BLOCKS.get(StoneBlockType.COBBLE, StoneTypes.RED_GRANITE)::getDefaultState);
1432+
registerCobbleBlock(TagPrefix.oreMarble,
1433+
STONE_BLOCKS.get(StoneBlockType.COBBLE, StoneTypes.MARBLE)::getDefaultState);
14301434
registerCobbleBlock(TagPrefix.oreSand, Blocks.SAND::defaultBlockState);
14311435
registerCobbleBlock(TagPrefix.oreGravel, Blocks.GRAVEL::defaultBlockState);
14321436
registerCobbleBlock(TagPrefix.oreRedSand, Blocks.RED_SAND::defaultBlockState);

0 commit comments

Comments
 (0)