mirror of
https://github.com/PaperMC/Waterfall.git
synced 2024-11-06 10:45:37 +01:00
d75d7d1edc
Upstream has released updates that appears to apply and compile correctly. This update has not been tested by 2LStudios and as with ANY update, please do your own testing Waterfall Changes:a5c78a9
(Maybe) Fix javadoc searcheb920b8
Updated Upstream (BungeeCord)8e9b90a
fix compile-native not working on linuxee819df
Updated Upstream (BungeeCord)66601f7
[ci skip] link to javadocs page instead of attempting direct
28 lines
1.1 KiB
Diff
28 lines
1.1 KiB
Diff
From bb419bd35b5e513be0ca20cda4c97bcaa23f0cd7 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 37784acd..1811084a 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
|
|
@@ -426,11 +426,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.32.0.windows.1
|
|
|