Waterfall/Waterfall-Proxy-Patches/0015-Allow-custom-uuids-even-if-onlineMode-is-true.patch

23 lines
1.0 KiB
Diff
Raw Normal View History

2023-06-03 20:33:32 +02:00
From 799190416ca187a0f7021813a617a6031573710b Mon Sep 17 00:00:00 2001
2023-02-23 21:51:32 +01:00
From: foss-mc <69294560+foss-mc@users.noreply.github.com>
Date: Wed, 16 Dec 2020 18:35:33 +0800
Subject: [PATCH] Allow custom uuids even if onlineMode is true
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
2023-06-03 20:33:32 +02:00
index ac20d5ad..706fb321 100644
2023-02-23 21:51:32 +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
2023-06-03 20:33:32 +02:00
@@ -779,7 +779,7 @@ public class InitialHandler extends PacketHandler implements PendingConnection
2023-02-23 21:51:32 +01:00
public void setUniqueId(UUID uuid)
{
Preconditions.checkState( thisState == State.USERNAME, "Can only set uuid while state is username" );
- Preconditions.checkState( !onlineMode, "Can only set uuid when online mode is false" );
+ // FlameCord - Allow custom uuids even if onlineMode is true
this.uniqueId = uuid;
}
--
2023-06-03 20:33:32 +02:00
2.40.1.windows.1
2023-02-23 21:51:32 +01:00