Skip to content

Commit fdd59e9

Browse files
committed
Fix missed protocol update
1 parent 8074f27 commit fdd59e9

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

BungeeCord-Patches/0065-Prevent-proxy-commands-from-breaking-the-chat-chain-.patch

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
From ddae8b4af11a2c84c38b02f22c7a94c63080d20e Mon Sep 17 00:00:00 2001
1+
From e6b3e9434fbf200b9d3a4d564f01d08535c39274 Mon Sep 17 00:00:00 2001
22
From: Shane Freeder <theboyetronic@gmail.com>
33
Date: Sun, 15 Oct 2023 00:36:38 +0100
44
Subject: [PATCH] Prevent proxy commands from breaking the chat chain system
@@ -19,18 +19,19 @@ index 6209292e..2afdd1c9 100644
1919
// Waterfall end
2020
}
2121
diff --git a/protocol/src/main/java/net/md_5/bungee/protocol/Protocol.java b/protocol/src/main/java/net/md_5/bungee/protocol/Protocol.java
22-
index 622364ff..1c63c6ca 100644
22+
index 622364ff..b6779092 100644
2323
--- a/protocol/src/main/java/net/md_5/bungee/protocol/Protocol.java
2424
+++ b/protocol/src/main/java/net/md_5/bungee/protocol/Protocol.java
25-
@@ -708,6 +708,13 @@ public enum Protocol
25+
@@ -708,6 +708,14 @@ public enum Protocol
2626
map( ProtocolConstants.MINECRAFT_1_21_6, 0x08 ),
2727
map( ProtocolConstants.MINECRAFT_26_1, 0x09 )
2828
);
2929
+ // Waterfall start
3030
+ TO_SERVER.registerPacket(
3131
+ net.md_5.bungee.protocol.packet.ClientChatAcknowledgement.class,
3232
+ net.md_5.bungee.protocol.packet.ClientChatAcknowledgement::new,
33-
+ map (ProtocolConstants.MINECRAFT_1_19_3, 0x3)
33+
+ map (ProtocolConstants.MINECRAFT_1_19_3, 0x3),
34+
+ map(ProtocolConstants.MINECRAFT_26_1, 0x6)
3435
+ );
3536
+ // Waterfall end
3637
TO_SERVER.registerPacket(

0 commit comments

Comments
 (0)