Skip to content

Commit

Permalink
fix Mirror widget not actually mirroring blocks closes #30
Browse files Browse the repository at this point in the history
  • Loading branch information
ProjectET committed Jun 16, 2022
1 parent dced070 commit 5b73a9e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public static void send(@Nullable Operation operation) {
boolean hasOperation = operation != null;
buf.writeBoolean(hasOperation);
if (hasOperation) {
buf.writeInt(operation.ordinal());
buf.writeEnum(operation);
}
ClientPlayNetworking.send(PacketHandler.PacketRotateMirror, buf);
}
Expand Down

0 comments on commit 5b73a9e

Please sign in to comment.