mirror of
https://github.com/PaperMC/Waterfall.git
synced 2024-11-06 18:51:21 +01:00
28 lines
1.1 KiB
Diff
28 lines
1.1 KiB
Diff
From 501c340474b980137994535738a1ac736b6d0e6a Mon Sep 17 00:00:00 2001
|
|
From: foss-mc <69294560+foss-mc@users.noreply.github.com>
|
|
Date: Wed, 16 Dec 2020 18:25:03 +0800
|
|
Subject: [PATCH] Change state to encrypt only 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
|
|
index e9937428..037a305b 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
|
|
@@ -449,11 +449,12 @@ public class InitialHandler extends PacketHandler implements PendingConnection
|
|
if ( onlineMode )
|
|
{
|
|
unsafe().sendPacket( request = EncryptionUtil.encryptRequest() );
|
|
+ // FlameCord - Change state to encrypt only if onlineMode is true
|
|
+ thisState = State.ENCRYPT;
|
|
} else
|
|
{
|
|
finish();
|
|
}
|
|
- thisState = State.ENCRYPT;
|
|
}
|
|
};
|
|
|
|
--
|
|
2.20.1
|
|
|