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

Hotfix cancelling unsigned 1.20.6 commands

Dieser Commit ist enthalten in:
Shane Freeder 2024-05-03 19:20:12 +01:00
Ursprung 368d1a7c12
Commit 1228f14742
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: A3F61EA5A085289C

Datei anzeigen

@ -55,7 +55,7 @@ public class SessionCommandHandler implements CommandHandler<SessionPlayerComman
+ "Contact your network administrator.")); + "Contact your network administrator."));
} }
// We seemingly can't actually do this if signed args exist, if not, we can probs keep stuff happy // We seemingly can't actually do this if signed args exist, if not, we can probs keep stuff happy
if (player.getProtocolVersion().noLessThan(ProtocolVersion.MINECRAFT_1_19_3)) { if (player.getProtocolVersion().noLessThan(ProtocolVersion.MINECRAFT_1_19_3) && packet.lastSeenMessages != null) {
return CompletableFuture.completedFuture(new ChatAcknowledgementPacket(packet.lastSeenMessages.getOffset())); return CompletableFuture.completedFuture(new ChatAcknowledgementPacket(packet.lastSeenMessages.getOffset()));
} }
return CompletableFuture.completedFuture(null); return CompletableFuture.completedFuture(null);