Waterfall/Waterfall-Proxy-Patches/0016-Change-state-to-encrypt-only-if-onlineMode-is-true.patch

28 lines
1.1 KiB
Diff
Raw Normal View History

2021-02-26 02:46:21 +01:00
From 501c340474b980137994535738a1ac736b6d0e6a Mon Sep 17 00:00:00 2001
2020-12-16 11:30:39 +01:00
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
2021-02-26 02:46:21 +01:00
index e9937428..037a305b 100644
2020-12-16 11:30:39 +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-02-26 02:46:21 +01:00
@@ -449,11 +449,12 @@ public class InitialHandler extends PacketHandler implements PendingConnection
2020-12-16 11:30:39 +01:00
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