Waterfall/Waterfall-Proxy-Patches/0019-Don-t-declare-uuid-unless-it-s-null.patch

26 lines
1.1 KiB
Diff
Raw Normal View History

2021-10-01 03:27:34 +02:00
From 1cea5ef145ff10f975c0bc774b18d46f02c89e34 Mon Sep 17 00:00:00 2001
2020-12-16 11:44:19 +01:00
From: foss-mc <69294560+foss-mc@users.noreply.github.com>
Date: Wed, 16 Dec 2020 18:43:17 +0800
Subject: [PATCH] Don't declare uuid unless it's null
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
2021-10-01 03:27:34 +02:00
index 674b3ead8..72e0098dc 100644
2020-12-16 11:44:19 +01:00
--- a/proxy/src/main/java/net/md_5/bungee/connection/InitialHandler.java
+++ b/proxy/src/main/java/net/md_5/bungee/connection/InitialHandler.java
2021-10-01 03:27:34 +02:00
@@ -510,7 +510,10 @@ public class InitialHandler extends PacketHandler implements PendingConnection
2020-12-16 11:44:19 +01:00
{
loginProfile = obj;
name = obj.getName();
- uniqueId = Util.getUUID( obj.getId() );
+ // FlameCord - Don't declare uuid unless it's null
+ if (uniqueId == null) {
+ uniqueId = Util.getUUID(obj.getId());
+ }
finish();
return;
}
--
2.32.0.windows.1
2020-12-16 11:44:19 +01:00