Remove debug print

This commit is contained in:
logan
2025-01-27 21:21:22 -08:00
parent 22bb5135e1
commit f5aa63a43d

View File

@@ -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);
}