- 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:
Regalis
2016-03-16 17:35:11 +02:00
parent 6f312281bf
commit 804510b144
4 changed files with 38 additions and 5 deletions
+7 -2
View File
@@ -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;