diff --git a/common/src/main/java/muramasa/gregtech/loader/machines/CompressorLoader.java b/common/src/main/java/muramasa/gregtech/loader/machines/CompressorLoader.java index 1788c2521..dffdfb94b 100644 --- a/common/src/main/java/muramasa/gregtech/loader/machines/CompressorLoader.java +++ b/common/src/main/java/muramasa/gregtech/loader/machines/CompressorLoader.java @@ -36,6 +36,13 @@ public static void init() { .add("gem_" + ingot.getId(),Math.max(80, ingot.getMass() * 2), 16); } }); + AntimatterMaterialTypes.RAW_ORE.all().forEach(raw_ore -> { + if (raw_ore.has(AntimatterMaterialTypes.BLOCK)) { + int count = 9; + COMPRESSING.RB().ii(RecipeIngredient.of(AntimatterMaterialTypes.RAW_ORE.get(raw_ore), count)).io(AntimatterMaterialTypes.RAW_ORE_BLOCK.get().get(raw_ore).asStack(1)) + .add("block_" + raw_ore.getId(),Math.max(80, raw_ore.getMass() * 2), 16); + } + }); COMPRESSING.RB().ii(DUST.getMaterialIngredient(Wood, 1)).io(AntimatterMaterialTypes.PLATE.get(Wood, 1)).add("wood_plate",60, 4); COMPRESSING.RB().ii(DUST.getMaterialIngredient(Fireclay, 1)).io(new ItemStack(CompressedFireClay)).add("compressed_fireclay",200, 2); COMPRESSING.RB().ii(RecipeIngredient.of(ItemTags.SAPLINGS, 4)).io(new ItemStack(PlantBall)).add("plantball",300, 2);