Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-11-08 17:20:24 +01:00
Fix player chat packet id
Mojang didn't register that in the correct spot alphabetically :(
Dieser Commit ist enthalten in:
Ursprung
b33bd2ac2b
Commit
63ffb51df5
@ -71,8 +71,8 @@ public enum ClientboundPackets1_19_1 implements ClientboundPacketType {
|
|||||||
PING, // 0x2F
|
PING, // 0x2F
|
||||||
CRAFT_RECIPE_RESPONSE, // 0x30
|
CRAFT_RECIPE_RESPONSE, // 0x30
|
||||||
PLAYER_ABILITIES, // 0x31
|
PLAYER_ABILITIES, // 0x31
|
||||||
PLAYER_CHAT_HEADER, // 0x32
|
PLAYER_CHAT, // 0x32
|
||||||
PLAYER_CHAT, // 0x33
|
PLAYER_CHAT_HEADER, // 0x33
|
||||||
COMBAT_END, // 0x34
|
COMBAT_END, // 0x34
|
||||||
COMBAT_ENTER, // 0x35
|
COMBAT_ENTER, // 0x35
|
||||||
COMBAT_KILL, // 0x36
|
COMBAT_KILL, // 0x36
|
||||||
|
@ -88,7 +88,7 @@ public final class Protocol1_19_1To1_19 extends AbstractProtocol<ClientboundPack
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// Back to system caht
|
// Back to system chat
|
||||||
registerClientbound(ClientboundPackets1_19.PLAYER_CHAT, ClientboundPackets1_19_1.SYSTEM_CHAT, new PacketRemapper() {
|
registerClientbound(ClientboundPackets1_19.PLAYER_CHAT, ClientboundPackets1_19_1.SYSTEM_CHAT, new PacketRemapper() {
|
||||||
@Override
|
@Override
|
||||||
public void registerMap() {
|
public void registerMap() {
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren