Waterfall/Waterfall-Proxy-Patches/0008-Change-replaceAll-to-replace.patch

24 lines
1.3 KiB
Diff
Raw Normal View History

2021-06-09 03:39:12 +02:00
From 2cf1175a59dd57569142d33de750ab8358171141 Mon Sep 17 00:00:00 2001
2021-06-09 00:27:45 +02:00
From: foss-mc <69294560+foss-mc@users.noreply.github.com>
Date: Wed, 16 Dec 2020 18:01:37 +0800
Subject: [PATCH] Change replaceAll() to replace()
diff --git a/proxy/src/main/java/net/md_5/bungee/ServerConnector.java b/proxy/src/main/java/net/md_5/bungee/ServerConnector.java
2021-06-09 03:39:12 +02:00
index a5efb0af..f5e09292 100644
2021-06-09 00:27:45 +02:00
--- a/proxy/src/main/java/net/md_5/bungee/ServerConnector.java
+++ b/proxy/src/main/java/net/md_5/bungee/ServerConnector.java
2021-06-09 03:39:12 +02:00
@@ -127,7 +127,8 @@ public class ServerConnector extends PacketHandler
2021-06-09 00:27:45 +02:00
newp[newp.length - 2] = new LoginResult.Property( ForgeConstants.FML_LOGIN_PROFILE, "true", null );
// If we do not perform the replacement, then the IP Forwarding code in Spigot et. al. will try to split on this prematurely.
- newp[newp.length - 1] = new LoginResult.Property( ForgeConstants.EXTRA_DATA, user.getExtraDataInHandshake().replaceAll( "\0", "\1"), "" );
+ // FlameCord - Change replaceAll() to replace()
+ newp[newp.length - 1] = new LoginResult.Property( ForgeConstants.EXTRA_DATA, user.getExtraDataInHandshake().replace( "\0", "\1"), "" );
// All done.
properties = newp;
--
2.31.1.windows.1