- fixed launcher not resetting the "checking for updates" text if it fails to parse the updateinfo xml file
- fixed crashing if switching from wiring mode to character mode - option to disable crew ai through the console
This commit is contained in:
@@ -335,8 +335,13 @@ namespace Launcher2
|
||||
return false;
|
||||
}
|
||||
|
||||
if (doc == null) return false;
|
||||
|
||||
if (doc == null)
|
||||
{
|
||||
updateInfoText.Text = "Checking updates failed";
|
||||
updateInfoBox.Visible = true;
|
||||
return false;
|
||||
}
|
||||
|
||||
CheckUpdateXML(doc);
|
||||
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user