3
0
Mirror von https://github.com/PaperMC/Velocity.git synchronisiert 2024-11-06 00:00:47 +01:00

Fix cancellation of PlayerChatEvent for key revision GENERIC_V1 (#941)

Dieser Commit ist enthalten in:
Gero 2023-03-09 18:56:09 +01:00 committet von GitHub
Ursprung e08ffa1019
Commit cb1f336d14
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 4AEE18F83AFDEB23

Datei anzeigen

@ -104,9 +104,11 @@ public class KeyedChatHandler implements
assert playerKey != null; assert playerKey != null;
return pme -> { return pme -> {
PlayerChatEvent.ChatResult chatResult = pme.getResult(); PlayerChatEvent.ChatResult chatResult = pme.getResult();
if (!chatResult.isAllowed() if (!chatResult.isAllowed()) {
&& playerKey.getKeyRevision().compareTo(IdentifiedKey.Revision.LINKED_V2) >= 0) { if (playerKey.getKeyRevision().compareTo(IdentifiedKey.Revision.LINKED_V2) >= 0) {
// Bad, very bad.
invalidCancel(logger, player); invalidCancel(logger, player);
}
return null; return null;
} }