From a668a485594028757c523a5991d485631370535a Mon Sep 17 00:00:00 2001 From: Outfluencer <48880402+Outfluencer@users.noreply.github.com> Date: Wed, 24 Apr 2024 17:42:13 +0200 Subject: [PATCH] authenticate = result.isAuthenticate() --- .../main/java/net/md_5/bungee/connection/InitialHandler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 e75429c43..9c62192fe 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 @@ -485,7 +485,7 @@ public class InitialHandler extends PacketHandler implements PendingConnection if ( onlineMode ) { thisState = State.ENCRYPT; - unsafe().sendPacket( request = EncryptionUtil.encryptRequest( result.isAuthenticate() ) ); + unsafe().sendPacket( request = EncryptionUtil.encryptRequest( authenticate = result.isAuthenticate() ) ); } else { thisState = State.FINISHING;