mirror of
https://github.com/PaperMC/Waterfall.git
synced 2024-11-06 10:45:37 +01:00
26 lines
1.1 KiB
Diff
26 lines
1.1 KiB
Diff
From 0334ea06032155229acf53b24afcc09275a295ec Mon Sep 17 00:00:00 2001
|
|
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
|
|
index 6018dccf..cec2fc00 100644
|
|
--- a/proxy/src/main/java/net/md_5/bungee/connection/InitialHandler.java
|
|
+++ b/proxy/src/main/java/net/md_5/bungee/connection/InitialHandler.java
|
|
@@ -509,7 +509,10 @@ public class InitialHandler extends PacketHandler implements PendingConnection
|
|
{
|
|
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
|
|
|