Skip to content

Commit 48b96d9

Browse files
committed
Updated Upstream (BungeeCord)
Upstream has released updates that appear to apply and compile correctly. This update has not been tested by PaperMC and as with ANY update, please do your own testing BungeeCord Changes: 8e99a4c5 Cleanup some formatting df530536 #3866: Make use of new ByteBuf#readString 4cd9a17a #3865: Bump Netty to 4.2.3-Final e9558ab3 Add some plugin remapping to assist compatibility 3a5c7318 #3855: Create protocol sub-packages data & util c13e6df6 #3862: Add perms permission to admin group by default 704e8664 #3849: Add permission to perms command aea5870a #3861: Add shadowColor to ComponentBuilder f1a4a42d Update Maven central config a485d9f3 #3856: Do not decode Chat (TO_CLIENT) 131125c7 #3859: Do not add control characters to the ClickEvent with OPEN_URL action 7fcc6206 #3858: Replace pre-Java 8 functional interface instantiation in CommandServer 7c7cb3de Minecraft 1.21.7 support 88436c44 #3854: Fix CustomClickAction read and write implementation bdd32d5a #3808: Do not decode packets that we don't handle 5e59b6dc #3851: Remove output from tests and "base" from dialog json bccce74c #3799, #3800: Do not parse the collision and visibility strings of the Team packet 0e9e0b58 #3850: Prevent some jdk24+ memory/native access warnings
1 parent c43af40 commit 48b96d9

13 files changed

Lines changed: 77 additions & 77 deletions

BungeeCord

Submodule BungeeCord updated 61 files

BungeeCord-Patches/0001-POM-Changes.patch

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
From f2af2b8bab3ef918c1fc4664c5f921a77351770c Mon Sep 17 00:00:00 2001
1+
From b29aea357755a5b66b45473e944dfa1df783559f Mon Sep 17 00:00:00 2001
22
From: Tux <write@imaginarycode.com>
33
Date: Thu, 19 May 2016 19:33:31 +0200
44
Subject: [PATCH] POM Changes
@@ -7,7 +7,7 @@ Subject: [PATCH] POM Changes
77
- Deploy to papermc mvn repo
88

99
diff --git a/api/pom.xml b/api/pom.xml
10-
index bc3de477..74a835d1 100644
10+
index 11bdc806..fe3d2bc9 100644
1111
--- a/api/pom.xml
1212
+++ b/api/pom.xml
1313
@@ -4,48 +4,48 @@
@@ -75,7 +75,7 @@ index bc3de477..74a835d1 100644
7575
<scope>compile</scope>
7676
</dependency>
7777
diff --git a/bootstrap/pom.xml b/bootstrap/pom.xml
78-
index b54ca5bf..061f7765 100644
78+
index 5a8b37b0..3d5f497f 100644
7979
--- a/bootstrap/pom.xml
8080
+++ b/bootstrap/pom.xml
8181
@@ -4,39 +4,40 @@
@@ -138,7 +138,7 @@ index b54ca5bf..061f7765 100644
138138
+ <Main-Class>net.md_5.bungee.Bootstrap</Main-Class>
139139
<Implementation-Version>${describe}</Implementation-Version>
140140
<Specification-Version>${maven.build.timestamp}</Specification-Version>
141-
</manifestEntries>
141+
<Enable-Native-Access>ALL-UNNAMED</Enable-Native-Access>
142142
diff --git a/bootstrap/src/main/java/net/md_5/bungee/Bootstrap.java b/bootstrap/src/main/java/net/md_5/bungee/Bootstrap.java
143143
index 6be22739..a4516ed9 100644
144144
--- a/bootstrap/src/main/java/net/md_5/bungee/Bootstrap.java
@@ -593,7 +593,7 @@ index 8beec32c..023ce639 100644
593593
<license>
594594
<name>BSD-3-Clause</name>
595595
diff --git a/pom.xml b/pom.xml
596-
index 6f938954..8c35ed93 100644
596+
index 548700d2..5b9b8c1f 100644
597597
--- a/pom.xml
598598
+++ b/pom.xml
599599
@@ -3,18 +3,18 @@
@@ -670,12 +670,12 @@ index 6f938954..8c35ed93 100644
670670

671671
<distributionManagement>
672672
- <snapshotRepository>
673-
- <id>sonatype-nexus-snapshots</id>
674-
- <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
673+
- <id>central-portal-snapshots</id>
674+
- <url>https://central.sonatype.com/repository/maven-snapshots/</url>
675675
- </snapshotRepository>
676676
<repository>
677-
- <id>sonatype-nexus-staging</id>
678-
- <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
677+
- <id>ossrh-staging-api</id>
678+
- <url>https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2/</url>
679679
+ <id>papermc-releases</id>
680680
+ <url>https://repo.papermc.io/repository/maven-releases/</url>
681681
</repository>
@@ -987,5 +987,5 @@ index a583c5f6..de36c7fd 100644
987987
<properties>
988988
<checkstyle.skip>true</checkstyle.skip>
989989
--
990-
2.49.0
990+
2.43.0
991991

BungeeCord-Patches/0007-Fixup-ProtocolConstants.patch

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
From 03e73e997dc06271e1afffa8b989125b275ee45f Mon Sep 17 00:00:00 2001
1+
From fa41fe7f868308dbd3c192f2fd30be744dfbaaab Mon Sep 17 00:00:00 2001
22
From: Troy Frew <fuzzy_bot@arenaga.me>
33
Date: Tue, 15 Nov 2016 09:07:51 -0500
44
Subject: [PATCH] Fixup ProtocolConstants
55

66

77
diff --git a/protocol/src/main/java/net/md_5/bungee/protocol/ProtocolConstants.java b/protocol/src/main/java/net/md_5/bungee/protocol/ProtocolConstants.java
8-
index 4e40c699..1c1a09bc 100644
8+
index eae98554..f8be48b9 100644
99
--- a/protocol/src/main/java/net/md_5/bungee/protocol/ProtocolConstants.java
1010
+++ b/protocol/src/main/java/net/md_5/bungee/protocol/ProtocolConstants.java
11-
@@ -129,6 +129,16 @@ public class ProtocolConstants
11+
@@ -131,6 +131,16 @@ public class ProtocolConstants
1212
SUPPORTED_VERSION_IDS = supportedVersionIds.build();
1313
}
1414

@@ -26,5 +26,5 @@ index 4e40c699..1c1a09bc 100644
2626
{
2727

2828
--
29-
2.50.0
29+
2.43.0
3030

BungeeCord-Patches/0012-Better-unit-tests-for-Chat-API.patch

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
From 602900eac3d6806b3ddc68b645c1160ecc4be10c Mon Sep 17 00:00:00 2001
1+
From e1f6a03c3ee7d19e696624af23af0081649e0dbe Mon Sep 17 00:00:00 2001
22
From: Tux <write@imaginarycode.com>
33
Date: Thu, 19 May 2016 17:36:31 -0600
44
Subject: [PATCH] Better unit tests for Chat API
55

66

77
diff --git a/serializer/src/test/java/net/md_5/bungee/api/chat/ComponentsTest.java b/serializer/src/test/java/net/md_5/bungee/api/chat/ComponentsTest.java
8-
index 47e84cd6..f330a625 100644
8+
index 8f95ae49..b7acaf57 100644
99
--- a/serializer/src/test/java/net/md_5/bungee/api/chat/ComponentsTest.java
1010
+++ b/serializer/src/test/java/net/md_5/bungee/api/chat/ComponentsTest.java
11-
@@ -682,6 +682,26 @@ public class ComponentsTest
11+
@@ -689,6 +689,26 @@ public class ComponentsTest
1212
assertEquals( testClickEvent, extraGetter.apply( eventRetention, 1 ).getClickEvent() );
1313
}
1414

@@ -52,5 +52,5 @@ index 995c70f2..dd9f040d 100644
5252
+ }
5353
}
5454
--
55-
2.49.0
55+
2.43.0
5656

BungeeCord-Patches/0016-Allow-invalid-packet-ids-for-forge-servers.patch

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
From 955f3fb382d507d2e5113d8da1a38fe496f6ca77 Mon Sep 17 00:00:00 2001
1+
From 7e267c79c3513ff812bea5c22f2c8b223009cf6a Mon Sep 17 00:00:00 2001
22
From: Techcable <Techcable@techcable.net>
33
Date: Thu, 19 May 2016 17:09:22 -0600
44
Subject: [PATCH] Allow invalid packet ids for forge servers
@@ -43,10 +43,10 @@ index abcb53bb..0dd0fe31 100644
4343
{
4444
packet.read( in, protocol, prot.getDirection(), protocolVersion );
4545
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
46-
index 6c4e6735..d6c76a5b 100644
46+
index dea027b0..ee354aeb 100644
4747
--- a/protocol/src/main/java/net/md_5/bungee/protocol/Protocol.java
4848
+++ b/protocol/src/main/java/net/md_5/bungee/protocol/Protocol.java
49-
@@ -993,14 +993,23 @@ public enum Protocol
49+
@@ -1036,14 +1036,23 @@ public enum Protocol
5050
return protocol;
5151
}
5252

@@ -72,7 +72,7 @@ index 6c4e6735..d6c76a5b 100644
7272
throw new BadPacketException( "Packet with id " + id + " outside of range" );
7373
}
7474
diff --git a/proxy/src/main/java/net/md_5/bungee/ServerConnector.java b/proxy/src/main/java/net/md_5/bungee/ServerConnector.java
75-
index 22af16c7..931cb4fa 100644
75+
index 6ed9e8b3..509f07c3 100644
7676
--- a/proxy/src/main/java/net/md_5/bungee/ServerConnector.java
7777
+++ b/proxy/src/main/java/net/md_5/bungee/ServerConnector.java
7878
@@ -246,6 +246,12 @@ public class ServerConnector extends PacketHandler
@@ -106,5 +106,5 @@ index 77b27c6f..26c1e1be 100644
106106
{
107107
rewriteInt( packet, oldId, newId, readerIndex + packetIdLength );
108108
--
109-
2.49.0
109+
2.43.0
110110

BungeeCord-Patches/0022-Add-dynamic-server-addition-removal-api.patch

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
From 74fa2f256598a8dc5ed044c63ed059d0ddea88d6 Mon Sep 17 00:00:00 2001
1+
From ef8bb7464b0aeae8a1ac53c264dd5894cd9cc9bd Mon Sep 17 00:00:00 2001
22
From: Troy Frew <fuzzy_bot@arenaga.me>
33
Date: Wed, 29 Jun 2016 04:29:25 +0200
44
Subject: [PATCH] Add dynamic server addition/removal api.
@@ -157,18 +157,18 @@ index 262b29c8..d7ed3e11 100644
157157
{
158158
int index = path.indexOf( SEPARATOR );
159159
diff --git a/module/cmd-server/src/main/java/net/md_5/bungee/module/cmd/server/CommandServer.java b/module/cmd-server/src/main/java/net/md_5/bungee/module/cmd/server/CommandServer.java
160-
index 59c104d3..698b420f 100644
160+
index f479a888..7d114541 100644
161161
--- a/module/cmd-server/src/main/java/net/md_5/bungee/module/cmd/server/CommandServer.java
162162
+++ b/module/cmd-server/src/main/java/net/md_5/bungee/module/cmd/server/CommandServer.java
163-
@@ -83,7 +83,7 @@ public class CommandServer extends Command implements TabExecutor
164-
@Override
163+
@@ -80,7 +80,7 @@ public class CommandServer extends Command implements TabExecutor
165164
public Iterable<String> onTabComplete(final CommandSender sender, final String[] args)
166165
{
167-
- return ( args.length > 1 ) ? Collections.EMPTY_LIST : Iterables.transform( Iterables.filter( ProxyServer.getInstance().getServers().values(), new Predicate<ServerInfo>()
168-
+ return ( args.length > 1 ) ? Collections.EMPTY_LIST : Iterables.transform( Iterables.filter( ProxyServer.getInstance().getServersCopy().values(), new Predicate<ServerInfo>() // Waterfall: use #getServersCopy()
169-
{
170-
private final String lower = ( args.length == 0 ) ? "" : args[0].toLowerCase( Locale.ROOT );
171-
166+
final String serverFilter = ( args.length == 0 ) ? "" : args[0].toLowerCase( Locale.ROOT );
167+
- return () -> ProxyServer.getInstance().getServers().values().stream()
168+
+ return () -> ProxyServer.getInstance().getServersCopy().values().stream() // Waterfall: use #getServersCopy()
169+
.filter( serverInfo -> serverInfo.getName().toLowerCase( Locale.ROOT ).startsWith( serverFilter ) && serverInfo.canAccess( sender ) )
170+
.map( ServerInfo::getName )
171+
.iterator();
172172
diff --git a/proxy/src/main/java/net/md_5/bungee/BungeeCord.java b/proxy/src/main/java/net/md_5/bungee/BungeeCord.java
173173
index e69da6c5..a8041258 100644
174174
--- a/proxy/src/main/java/net/md_5/bungee/BungeeCord.java
@@ -311,5 +311,5 @@ index eb651a14..7a4da21f 100644
311311
+ // Waterfall end
312312
}
313313
--
314-
2.49.0
314+
2.43.0
315315

BungeeCord-Patches/0029-Fix-potion-race-condition-on-Forge-1.8.9.patch

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
From 786d670574b0fa2264e313cb849362d425b9b554 Mon Sep 17 00:00:00 2001
1+
From 7036066472edc17bbbba073f2e0cd7d141ac8264 Mon Sep 17 00:00:00 2001
22
From: Aaron Hill <aa1ronham@gmail.com>
33
Date: Thu, 15 Sep 2016 22:38:37 +0200
44
Subject: [PATCH] Fix potion race condition on Forge 1.8.9
55

66

77
diff --git a/protocol/src/main/java/net/md_5/bungee/protocol/AbstractPacketHandler.java b/protocol/src/main/java/net/md_5/bungee/protocol/AbstractPacketHandler.java
8-
index 86088656..aaf70d03 100644
8+
index 93e3aaed..46f568b3 100644
99
--- a/protocol/src/main/java/net/md_5/bungee/protocol/AbstractPacketHandler.java
1010
+++ b/protocol/src/main/java/net/md_5/bungee/protocol/AbstractPacketHandler.java
11-
@@ -303,4 +303,14 @@ public abstract class AbstractPacketHandler
11+
@@ -298,4 +298,14 @@ public abstract class AbstractPacketHandler
1212
public void handle(BundleDelimiter bundleDelimiter) throws Exception
1313
{
1414
}
@@ -117,7 +117,7 @@ index 00000000..7ed2dc3a
117117
+ }
118118
+}
119119
diff --git a/proxy/src/main/java/net/md_5/bungee/UserConnection.java b/proxy/src/main/java/net/md_5/bungee/UserConnection.java
120-
index a5ab08e3..e062987f 100644
120+
index 5b18a450..32f7cae2 100644
121121
--- a/proxy/src/main/java/net/md_5/bungee/UserConnection.java
122122
+++ b/proxy/src/main/java/net/md_5/bungee/UserConnection.java
123123
@@ -1,7 +1,9 @@
@@ -142,7 +142,7 @@ index a5ab08e3..e062987f 100644
142142
@Setter
143143
private String lastCommandTabbed;
144144
diff --git a/proxy/src/main/java/net/md_5/bungee/connection/DownstreamBridge.java b/proxy/src/main/java/net/md_5/bungee/connection/DownstreamBridge.java
145-
index f794c0b2..2984b988 100644
145+
index 6b611fc3..a6d49bb7 100644
146146
--- a/proxy/src/main/java/net/md_5/bungee/connection/DownstreamBridge.java
147147
+++ b/proxy/src/main/java/net/md_5/bungee/connection/DownstreamBridge.java
148148
@@ -754,6 +754,32 @@ public class DownstreamBridge extends PacketHandler
@@ -217,5 +217,5 @@ index d15044f4..087cb4b0 100644
217217
/**
218218
* Sends the server mod list to the client, or stores it for sending later.
219219
--
220-
2.49.0
220+
2.43.0
221221

BungeeCord-Patches/0033-Use-Log4j2-for-logging-and-TerminalConsoleAppender-f.patch

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
1-
From 359e00558c32f0c6eae1e97955e6951c82f558c1 Mon Sep 17 00:00:00 2001
1+
From 83a06fcf265c9c84b293d40cbc3a59e5ecfd1186 Mon Sep 17 00:00:00 2001
22
From: Minecrell <minecrell@minecrell.net>
33
Date: Fri, 22 Sep 2017 12:46:47 +0200
44
Subject: [PATCH] Use Log4j2 for logging and TerminalConsoleAppender for
55
console
66

77

88
diff --git a/bootstrap/pom.xml b/bootstrap/pom.xml
9-
index 061f7765..14a154aa 100644
9+
index 3d5f497f..366bee40 100644
1010
--- a/bootstrap/pom.xml
1111
+++ b/bootstrap/pom.xml
12-
@@ -49,6 +49,9 @@
13-
<Main-Class>net.md_5.bungee.Bootstrap</Main-Class>
12+
@@ -50,6 +50,9 @@
1413
<Implementation-Version>${describe}</Implementation-Version>
1514
<Specification-Version>${maven.build.timestamp}</Specification-Version>
15+
<Enable-Native-Access>ALL-UNNAMED</Enable-Native-Access>
1616
+
1717
+ <!-- Log4j includes custom classes for Java 9+ (#293) -->
1818
+ <Multi-Release>true</Multi-Release>
1919
</manifestEntries>
2020
</archive>
2121
</configuration>
22-
@@ -76,7 +79,17 @@
22+
@@ -77,7 +80,17 @@
2323
</excludes>
2424
</filter>
2525
</filters>
@@ -233,7 +233,7 @@ index 00000000..cfd039cd
233233
+ </Loggers>
234234
+</Configuration>
235235
diff --git a/pom.xml b/pom.xml
236-
index 8c35ed93..70bdee0c 100644
236+
index 5b9b8c1f..2b860eee 100644
237237
--- a/pom.xml
238238
+++ b/pom.xml
239239
@@ -52,13 +52,14 @@
@@ -634,5 +634,5 @@ index 6788fbe7..00000000
634634
- }
635635
-}
636636
--
637-
2.49.0
637+
2.43.0
638638

BungeeCord-Patches/0047-Speed-up-some-common-exceptions.patch

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
From bcf08b07a7659d42df94a4160ee76b0af80e93dc Mon Sep 17 00:00:00 2001
1+
From b039059688ff3f84912f122561af8046dcc34ec5 Mon Sep 17 00:00:00 2001
22
From: Shane Freeder <theboyetronic@gmail.com>
33
Date: Mon, 25 Nov 2019 19:54:06 +0000
44
Subject: [PATCH] Speed up some common exceptions
@@ -59,10 +59,10 @@ index 6c0ef4df..076ddd70 100644
5959
+ // Waterfall end
6060
}
6161
diff --git a/protocol/src/main/java/net/md_5/bungee/protocol/DefinedPacket.java b/protocol/src/main/java/net/md_5/bungee/protocol/DefinedPacket.java
62-
index 0ee7b0de..267ebc40 100644
62+
index 122197e1..afad2ce2 100644
6363
--- a/protocol/src/main/java/net/md_5/bungee/protocol/DefinedPacket.java
6464
+++ b/protocol/src/main/java/net/md_5/bungee/protocol/DefinedPacket.java
65-
@@ -48,6 +48,9 @@ public abstract class DefinedPacket
65+
@@ -85,6 +85,9 @@ public abstract class DefinedPacket
6666
}
6767
}
6868

@@ -72,7 +72,7 @@ index 0ee7b0de..267ebc40 100644
7272
public static void writeString(String s, ByteBuf buf)
7373
{
7474
writeString( s, buf, Short.MAX_VALUE );
75-
@@ -250,13 +253,18 @@ public abstract class DefinedPacket
75+
@@ -286,13 +289,18 @@ public abstract class DefinedPacket
7676
byte in;
7777
while ( true )
7878
{
@@ -172,7 +172,7 @@ index 237955ab..d0bd4d75 100644
172172
+ // Waterfall end
173173
}
174174
diff --git a/proxy/src/main/java/net/md_5/bungee/connection/InitialHandler.java b/proxy/src/main/java/net/md_5/bungee/connection/InitialHandler.java
175-
index 31cdbe48..b8f1010e 100644
175+
index 5116128f..32199eec 100644
176176
--- a/proxy/src/main/java/net/md_5/bungee/connection/InitialHandler.java
177177
+++ b/proxy/src/main/java/net/md_5/bungee/connection/InitialHandler.java
178178
@@ -24,6 +24,8 @@ import javax.crypto.SecretKey;
@@ -221,5 +221,5 @@ index ac99d02c..0c1ecfb8 100644
221221

222222
// Waterfall start
223223
--
224-
2.49.0
224+
2.43.0
225225

BungeeCord-Patches/0054-Additional-DoS-mitigations.patch

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
From 368c75dee528a0babbd8036944a9b3dea1914ce7 Mon Sep 17 00:00:00 2001
1+
From 82e21345043975c4ef0bc86ccd1a57e376a885a1 Mon Sep 17 00:00:00 2001
22
From: "Five (Xer)" <admin@fivepb.me>
33
Date: Sat, 30 Jan 2021 18:04:14 +0100
44
Subject: [PATCH] Additional DoS mitigations
@@ -8,26 +8,26 @@ Courtesy of Tux and the Velocity Contributors. See:
88
https://github.com/VelocityPowered/Velocity/commit/5ceac16a821ea35572ff11412ace8929fd06e278
99

1010
diff --git a/protocol/src/main/java/net/md_5/bungee/protocol/DefinedPacket.java b/protocol/src/main/java/net/md_5/bungee/protocol/DefinedPacket.java
11-
index 267ebc40..adfcc189 100644
11+
index afad2ce2..0480c8f1 100644
1212
--- a/protocol/src/main/java/net/md_5/bungee/protocol/DefinedPacket.java
1313
+++ b/protocol/src/main/java/net/md_5/bungee/protocol/DefinedPacket.java
14-
@@ -92,6 +92,7 @@ public abstract class DefinedPacket
14+
@@ -129,6 +129,7 @@ public abstract class DefinedPacket
1515
int len = readVarInt( buf );
1616
if ( len > maxLen * 3 )
1717
{
1818
+ if(!MinecraftDecoder.DEBUG) throw STRING_TOO_MANY_BYTES_EXCEPTION; // Waterfall start: Additional DoS mitigations
1919
throw new OverflowPacketException( "Cannot receive string longer than " + maxLen * 3 + " (got " + len + " bytes)" );
2020
}
2121

22-
@@ -100,6 +101,7 @@ public abstract class DefinedPacket
22+
@@ -136,6 +137,7 @@ public abstract class DefinedPacket
2323

2424
if ( s.length() > maxLen )
2525
{
2626
+ if(!MinecraftDecoder.DEBUG) throw STRING_TOO_LONG_EXCEPTION; // Waterfall start: Additional DoS mitigations
2727
throw new OverflowPacketException( "Cannot receive string longer than " + maxLen + " (got " + s.length() + " characters)" );
2828
}
2929

30-
@@ -602,4 +604,21 @@ public abstract class DefinedPacket
30+
@@ -638,4 +640,21 @@ public abstract class DefinedPacket
3131

3232
@Override
3333
public abstract String toString();
@@ -189,7 +189,7 @@ index 1b911699..8244154d 100644
189189
+ // Waterfall end
190190
}
191191
diff --git a/protocol/src/main/java/net/md_5/bungee/protocol/packet/LoginRequest.java b/protocol/src/main/java/net/md_5/bungee/protocol/packet/LoginRequest.java
192-
index e62a3a03..9789215c 100644
192+
index d9cadc25..5d32ede3 100644
193193
--- a/protocol/src/main/java/net/md_5/bungee/protocol/packet/LoginRequest.java
194194
+++ b/protocol/src/main/java/net/md_5/bungee/protocol/packet/LoginRequest.java
195195
@@ -71,4 +71,13 @@ public class LoginRequest extends DefinedPacket
@@ -257,5 +257,5 @@ index 738f0c92..ec33d337 100644
257257
+ // Waterfall end
258258
}
259259
--
260-
2.49.0
260+
2.43.0
261261

0 commit comments

Comments
 (0)