diff --git a/CHANGELOG.md b/CHANGELOG.md index 472e1a6a..66cc3966 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# 2.4.8 +- Forgot to add recipe for LRB [#326](https://github.com/GTModpackTeam/GTExpert-Core/pull/326) + +* * * + # 2.4.7 - Fix Draconium Casing Recycle [#324](https://github.com/GTModpackTeam/GTExpert-Core/pull/324) - AE2 UEL: Extended support ends [#325](https://github.com/GTModpackTeam/GTExpert-Core/pull/325) diff --git a/src/main/java/com/github/gtexpert/core/loaders/recipe/GTERecipe.java b/src/main/java/com/github/gtexpert/core/loaders/recipe/GTERecipe.java index 8c20a7fd..f227315a 100644 --- a/src/main/java/com/github/gtexpert/core/loaders/recipe/GTERecipe.java +++ b/src/main/java/com/github/gtexpert/core/loaders/recipe/GTERecipe.java @@ -31,6 +31,7 @@ import gregtech.common.ConfigHolder; import gregtech.common.blocks.BlockGlassCasing; import gregtech.common.blocks.BlockMachineCasing; +import gregtech.common.blocks.BlockMetalCasing; import gregtech.common.blocks.MetaBlocks; import gregtech.common.items.MetaItems; import gregtech.common.metatileentities.MetaTileEntities; @@ -762,6 +763,13 @@ private static void items() { } private static void blocks() { + // Large Rock Breaker + ModHandler.addShapedRecipe(true, "gtexpert.machine.large_rock_breaker", + GTEMetaTileEntities.LARGE_ROCK_BREAKER.getStackForm(), "CGC", "CFC", "CGC", + 'G', new UnificationEntry(gear, Materials.TungstenSteel), + 'F', MetaTileEntities.ROCK_BREAKER[EV].getStackForm(), + 'C', MetaBlocks.METAL_CASING.getItemVariant(BlockMetalCasing.MetalCasingType.STEEL_SOLID)); + // Large Oil Cracking Unit ModHandler.addShapedRecipe(true, "gtexpert.machine.large_oil_cracking_unit", GTEMetaTileEntities.LARGE_CRACKER.getStackForm(), "PCP", "FSF", "PCP",