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

Fix extra respawn packet byte on <1.21.2 (#1448)

Dieser Commit ist enthalten in:
Michael 2024-10-22 19:01:55 +02:00 committet von GitHub
Ursprung 05235da55d
Commit 7a9227d517
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: B5690EEEBB952194

Datei anzeigen

@ -278,7 +278,7 @@ public class RespawnPacket implements MinecraftPacket {
ProtocolUtils.writeVarInt(buf, portalCooldown); ProtocolUtils.writeVarInt(buf, portalCooldown);
} }
if (version.noLessThan(ProtocolVersion.MINECRAFT_1_12_1)) { if (version.noLessThan(ProtocolVersion.MINECRAFT_1_21_2)) {
ProtocolUtils.writeVarInt(buf, seaLevel); ProtocolUtils.writeVarInt(buf, seaLevel);
} }