mirror of
https://github.com/PaperMC/Velocity.git
synced 2025-02-17 15:39:30 +08:00
Fix SystemChatPacket: Support reading packet properly in newer MC versions (#1461)
This commit is contained in:
parent
cefa3b272e
commit
9cfcfcf2ed
@ -47,8 +47,11 @@ public class SystemChatPacket implements MinecraftPacket {
|
|||||||
@Override
|
@Override
|
||||||
public void decode(ByteBuf buf, ProtocolUtils.Direction direction, ProtocolVersion version) {
|
public void decode(ByteBuf buf, ProtocolUtils.Direction direction, ProtocolVersion version) {
|
||||||
component = ComponentHolder.read(buf, version);
|
component = ComponentHolder.read(buf, version);
|
||||||
// System chat is never decoded so this doesn't matter for now
|
if (version.noLessThan(ProtocolVersion.MINECRAFT_1_19_1)){
|
||||||
type = ChatType.values()[ProtocolUtils.readVarInt(buf)];
|
type = buf.readBoolean() ? ChatType.GAME_INFO : ChatType.SYSTEM;
|
||||||
|
} else {
|
||||||
|
type = ChatType.values()[ProtocolUtils.readVarInt(buf)];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
Reference in New Issue
Block a user