mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
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 873bd79fd6.
This commit is contained in:
parent
60ba4bd6c2
commit
706a41ee26
1 changed files with 1 additions and 1 deletions
|
|
@ -411,7 +411,7 @@ namespace MinecraftClient
|
||||||
ProtocolHandler.LoginResult result = ProtocolHandler.LoginResult.LoginRequired;
|
ProtocolHandler.LoginResult result = ProtocolHandler.LoginResult.LoginRequired;
|
||||||
|
|
||||||
string loginLower = ToLowerIfNeed(InternalConfig.Account.Login);
|
string loginLower = ToLowerIfNeed(InternalConfig.Account.Login);
|
||||||
if (InternalConfig.Account.Password == "-" || InternalConfig.Account.Password == string.Empty)
|
if (InternalConfig.Account.Password == "-")
|
||||||
{
|
{
|
||||||
ConsoleIO.WriteLineFormatted("§8" + Translations.mcc_offline, acceptnewlines: true);
|
ConsoleIO.WriteLineFormatted("§8" + Translations.mcc_offline, acceptnewlines: true);
|
||||||
result = ProtocolHandler.LoginResult.Success;
|
result = ProtocolHandler.LoginResult.Success;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue