Skip to content

Commit 706a41e

Browse files
committed
Revert "Fix offline client reconnecting as a microsoft account"
Could no longer reproduce said issue without this code, and a bug was reported regarding this change, so reverting it. This reverts commit 873bd79.
1 parent 60ba4bd commit 706a41e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MinecraftClient/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ private static void InitializeClient()
411411
ProtocolHandler.LoginResult result = ProtocolHandler.LoginResult.LoginRequired;
412412

413413
string loginLower = ToLowerIfNeed(InternalConfig.Account.Login);
414-
if (InternalConfig.Account.Password == "-" || InternalConfig.Account.Password == string.Empty)
414+
if (InternalConfig.Account.Password == "-")
415415
{
416416
ConsoleIO.WriteLineFormatted("§8" + Translations.mcc_offline, acceptnewlines: true);
417417
result = ProtocolHandler.LoginResult.Success;

0 commit comments

Comments
 (0)