We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36637fb commit fa60a77Copy full SHA for fa60a77
src/main/java/gregtech/common/covers/detector/CoverDetectorBase.java
@@ -58,6 +58,12 @@ private void toggleInvertedWithNotification() {
58
}
59
60
61
+ @Override
62
+ public void readCustomData(int discriminator, @NotNull PacketBuffer buf) {
63
+ if (discriminator == UPDATE_INVERTED)
64
+ setInverted(buf.readBoolean());
65
+ }
66
+
67
public final void setRedstoneSignalOutput(int redstoneSignalOutput) {
68
this.redstoneSignalOutput = redstoneSignalOutput;
69
getCoverableView().notifyBlockUpdate();
0 commit comments