2021-12-30 03:02:28 +01:00
|
|
|
From 6d9ca4241f7afcfba08144a7e247bfc36a4d5990 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-11-30 15:50:10 +01:00
|
|
|
index 75028024..2ee16684 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-11-30 15:50:10 +01:00
|
|
|
@@ -129,7 +129,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;
|
|
|
|
--
|
2021-12-30 03:02:28 +01:00
|
|
|
2.32.0
|
2021-06-09 00:27:45 +02:00
|
|
|
|