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-11-30 15:50:10 +01:00
From f62ce8fddd6ad50d94817ae022899a0ee529e47c 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-11-30 15:50:10 +01:00
index 6018dccf..cec2fc00 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-11-30 15:50:10 +01:00
@@ -509,7 +509,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