From f5aa63a43dd198d91fbd2bd58e6a99244aba0755 Mon Sep 17 00:00:00 2001 From: logan Date: Mon, 27 Jan 2025 21:21:22 -0800 Subject: [PATCH] Remove debug print --- .../oc2/common/blockentity/RedstoneInterfaceBlockEntity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/li/cil/oc2/common/blockentity/RedstoneInterfaceBlockEntity.java b/src/main/java/li/cil/oc2/common/blockentity/RedstoneInterfaceBlockEntity.java index d8df75c5..bc2e9ba9 100644 --- a/src/main/java/li/cil/oc2/common/blockentity/RedstoneInterfaceBlockEntity.java +++ b/src/main/java/li/cil/oc2/common/blockentity/RedstoneInterfaceBlockEntity.java @@ -287,6 +287,7 @@ public final class RedstoneInterfaceBlockEntity extends ModBlockEntity implement public byte[] getBundledSignal(Direction direction) { final int index = direction.get3DDataValue(); return this.bundled_output[index]; + } @Override public void subscribe(IEventSink sink, UUID myid) { @@ -318,7 +319,6 @@ public final class RedstoneInterfaceBlockEntity extends ModBlockEntity implement msg.addProperty("side", ""+direction); msg.addProperty("level", sl); - System.out.println("updating redstone interface block with level: "+sl); for (var subscriber : subscribers.entrySet()) { subscriber.getKey().postEvent(subscriber.getValue(), msg); }