mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-11-07 17:36:07 +00:00
Bug fix: Guid parse fail
This commit is contained in:
parent
684dcb3fc6
commit
da02f8004f
1 changed files with 2 additions and 1 deletions
|
|
@ -183,7 +183,8 @@ namespace MinecraftClient
|
|||
|
||||
bool retry = false;
|
||||
this.sessionid = sessionID;
|
||||
this.uuid = new Guid(uuid);
|
||||
if (!Guid.TryParse(uuid, out this.uuid))
|
||||
this.uuid = Guid.Empty;
|
||||
this.uuidStr = uuid;
|
||||
this.username = user;
|
||||
this.host = server_ip;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue