Updated Upstream (BungeeCord)

Upstream has released updates that appears 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:
bda16056 Minor formatting fixes
2e0e88db #3158: Remove redundant protocol version check in the TabCompleteResponse packet
96482cc0 #3157: Read only 20 chars for clients below 1.13 in PluginMessages
This commit is contained in:
Shane Freeder 2021-09-13 06:21:56 +01:00
parent 7e6af4cef6
commit f92cc98839
2 changed files with 6 additions and 6 deletions

@ -1 +1 @@
Subproject commit a283aaf724d4c9a815540cd32f3aafaa72df9e05
Subproject commit bda160562792a913cba3a65ba4996de60d0d6d68

View File

@ -1,4 +1,4 @@
From 1b1107674563adebad11d00b6625bf8f6cbb97d1 Mon Sep 17 00:00:00 2001
From 4719d808999eabefc957768b47dfbf3faf962852 Mon Sep 17 00:00:00 2001
From: mibac138 <5672750+mibac138@users.noreply.github.com>
Date: Tue, 20 Jul 2021 00:47:59 +0200
Subject: [PATCH] Strip hostname from InetSocketAddress
@ -42,14 +42,14 @@ index 03dabe01..464acc6c 100644
--- a/proxy/src/main/java/net/md_5/bungee/util/AddressUtil.java
+++ b/proxy/src/main/java/net/md_5/bungee/util/AddressUtil.java
@@ -11,7 +11,7 @@ public class AddressUtil
public static String sanitizeAddress(InetSocketAddress addr)
{
- String string = addr.getHostString();
+ String string = addr.getAddress().getHostAddress(); // Waterfall
// Remove IPv6 scope if present
if ( addr.getAddress() instanceof Inet6Address )
--
2.25.1
--
2.33.0