2021-06-09 03:25:38 +02:00
|
|
|
From 6b6dd8e0fc01d46fb928cbac548cc2ca1a0a7da1 Mon Sep 17 00:00:00 2001
|
2020-12-16 11:38:57 +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
|
2021-06-09 01:33:36 +02:00
|
|
|
index b4067b1e..3120abdb 100644
|
2020-12-16 11:38:57 +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-06-09 01:33:36 +02:00
|
|
|
@@ -686,7 +686,7 @@ public class InitialHandler extends PacketHandler implements PendingConnection
|
2020-12-16 11:38:57 +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;
|
|
|
|
}
|
|
|
|
|
|
|
|
--
|
2021-06-09 01:33:36 +02:00
|
|
|
2.31.1.windows.1
|
2020-12-16 11:38:57 +01:00
|
|
|
|