From eee95c56dcfa00aa774e77c329e834cf94488b49 Mon Sep 17 00:00:00 2001 From: n1xx1 Date: Tue, 12 May 2026 15:02:32 +0200 Subject: [PATCH] remove export abilities from patter buffers --- .../gtceu/common/data/machines/GTAEMachines.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/gregtechceu/gtceu/common/data/machines/GTAEMachines.java b/src/main/java/com/gregtechceu/gtceu/common/data/machines/GTAEMachines.java index 72abe4159a2..01668f1dd75 100644 --- a/src/main/java/com/gregtechceu/gtceu/common/data/machines/GTAEMachines.java +++ b/src/main/java/com/gregtechceu/gtceu/common/data/machines/GTAEMachines.java @@ -106,8 +106,7 @@ public class GTAEMachines { .machine("me_pattern_buffer", MEPatternBufferPartMachine::new) .tier(LuV) .rotationState(RotationState.ALL) - .abilities(PartAbility.IMPORT_ITEMS, PartAbility.IMPORT_FLUIDS, PartAbility.EXPORT_FLUIDS, - PartAbility.EXPORT_ITEMS) + .abilities(PartAbility.IMPORT_ITEMS, PartAbility.IMPORT_FLUIDS) .rotationState(RotationState.ALL) .colorOverlayTieredHullModel(GTCEu.id("block/overlay/appeng/me_buffer_hatch")) .langValue("ME Pattern Buffer") @@ -121,8 +120,7 @@ public class GTAEMachines { .machine("me_pattern_buffer_proxy", MEPatternBufferProxyPartMachine::new) .tier(LuV) .rotationState(RotationState.ALL) - .abilities(PartAbility.IMPORT_ITEMS, PartAbility.IMPORT_FLUIDS, PartAbility.EXPORT_FLUIDS, - PartAbility.EXPORT_ITEMS) + .abilities(PartAbility.IMPORT_ITEMS, PartAbility.IMPORT_FLUIDS) .rotationState(RotationState.ALL) .colorOverlayTieredHullModel(GTCEu.id("block/overlay/appeng/me_buffer_hatch_proxy")) .langValue("ME Pattern Buffer Proxy")