Skip to content

Commit

Permalink
yippe
Browse files Browse the repository at this point in the history
  • Loading branch information
Zorbatron committed Sep 23, 2024
1 parent 2d15bb6 commit fd392b3
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
import com.gregtechceu.gtceu.integration.ae2.machine.trait.MEPatternBufferProxyRecipeHandler;

import com.lowdragmc.lowdraglib.gui.modular.ModularUI;
import com.lowdragmc.lowdraglib.syncdata.annotation.DescSynced;
import com.lowdragmc.lowdraglib.syncdata.annotation.Persisted;
import com.lowdragmc.lowdraglib.syncdata.field.ManagedFieldHolder;

Expand Down Expand Up @@ -49,6 +50,7 @@ public class MEPatternBufferProxyPartMachine extends TieredIOPartMachine impleme

@Persisted
@Getter
@DescSynced
private BlockPos bufferPos;

public MEPatternBufferProxyPartMachine(IMachineBlockEntity holder) {
Expand Down Expand Up @@ -114,7 +116,7 @@ public MetaMachine self() {
@Override
public boolean shouldOpenUI(Player player, InteractionHand hand, BlockHitResult hit) {
var buffer = getBuffer();
return buffer != null && super.shouldOpenUI(player, hand, hit);
return buffer != null;
}

@Override
Expand Down

0 comments on commit fd392b3

Please sign in to comment.