Correct name

This commit is contained in:
Noel Németh 2022-06-12 14:32:15 +02:00
parent 74ceb81704
commit 29c5d1d64b
1 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ import java.util.Map;
public record ClientCommandChatPacket(@NotNull String message, long timestamp,
long salt, Map<String, byte[]> signatures,
boolean signed) implements ClientPacket {
boolean signedPreview) implements ClientPacket {
public ClientCommandChatPacket {
signatures = Map.copyOf(signatures);
}
@ -29,7 +29,7 @@ public record ClientCommandChatPacket(@NotNull String message, long timestamp,
writer.writeSizedString(s);
writer.writeByteArray(bytes);
});
writer.writeBoolean(signed);
writer.writeBoolean(signedPreview);
}
private static Map<String, byte[]> readSignature(BinaryReader reader) {