2021-07-04 22:22:11 +02:00
|
|
|
From bb419bd35b5e513be0ca20cda4c97bcaa23f0cd7 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-07-04 22:22:11 +02:00
|
|
|
index 37784acd..1811084a 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-07-04 22:22:11 +02:00
|
|
|
@@ -426,11 +426,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;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
--
|
2021-07-04 22:22:11 +02:00
|
|
|
2.32.0.windows.1
|
2020-12-16 11:30:39 +01:00
|
|
|
|