mirror of
https://github.com/ViaVersion/ViaBackwards.git
synced 2024-11-22 12:16:21 +01:00
1.19-pre1
This commit is contained in:
parent
68c0a0b333
commit
4a1eefcf87
@ -5,7 +5,7 @@ plugins {
|
|||||||
|
|
||||||
allprojects {
|
allprojects {
|
||||||
group = "com.viaversion"
|
group = "com.viaversion"
|
||||||
version = "4.3.0-22w19a-SNAPSHOT"
|
version = "4.3.0-1.19-pre1-SNAPSHOT"
|
||||||
description = "Allow older clients to join newer server versions."
|
description = "Allow older clients to join newer server versions."
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -187,6 +187,7 @@ public final class Protocol1_18_2To1_19 extends BackwardsProtocol<ClientboundPac
|
|||||||
|
|
||||||
cancelClientbound(ClientboundPackets1_19.SERVER_DATA);
|
cancelClientbound(ClientboundPackets1_19.SERVER_DATA);
|
||||||
cancelClientbound(ClientboundPackets1_19.CHAT_PREVIEW);
|
cancelClientbound(ClientboundPackets1_19.CHAT_PREVIEW);
|
||||||
|
cancelClientbound(ClientboundPackets1_19.SET_DISPLAY_CHAT_PREVIEW);
|
||||||
registerClientbound(ClientboundPackets1_19.PLAYER_CHAT, ClientboundPackets1_18.CHAT_MESSAGE, new PacketRemapper() {
|
registerClientbound(ClientboundPackets1_19.PLAYER_CHAT, ClientboundPackets1_18.CHAT_MESSAGE, new PacketRemapper() {
|
||||||
@Override
|
@Override
|
||||||
public void registerMap() {
|
public void registerMap() {
|
||||||
@ -232,6 +233,7 @@ public final class Protocol1_18_2To1_19 extends BackwardsProtocol<ClientboundPac
|
|||||||
wrapper.setPacketType(ServerboundPackets1_19.CHAT_COMMAND);
|
wrapper.setPacketType(ServerboundPackets1_19.CHAT_COMMAND);
|
||||||
wrapper.set(Type.STRING, 0, message.substring(1));
|
wrapper.set(Type.STRING, 0, message.substring(1));
|
||||||
wrapper.write(Type.VAR_INT, 0); // No signatures
|
wrapper.write(Type.VAR_INT, 0); // No signatures
|
||||||
|
wrapper.write(Type.BOOLEAN, false); // No signed preview
|
||||||
} else {
|
} else {
|
||||||
wrapper.write(Type.BYTE_ARRAY_PRIMITIVE, EMPTY_BYTES); // Signature
|
wrapper.write(Type.BYTE_ARRAY_PRIMITIVE, EMPTY_BYTES); // Signature
|
||||||
wrapper.write(Type.BOOLEAN, false); // No signed preview
|
wrapper.write(Type.BOOLEAN, false); // No signed preview
|
||||||
|
@ -3,7 +3,7 @@ metadata.format.version = "1.1"
|
|||||||
[versions]
|
[versions]
|
||||||
|
|
||||||
# ViaVersion
|
# ViaVersion
|
||||||
viaver = "4.3.0-22w19a-SNAPSHOT"
|
viaver = "4.3.0-1.19-pre1-SNAPSHOT"
|
||||||
|
|
||||||
# Common provided
|
# Common provided
|
||||||
netty = "4.0.20.Final"
|
netty = "4.0.20.Final"
|
||||||
|
Loading…
Reference in New Issue
Block a user