Non-WinForms launcher with auto updater

This commit is contained in:
Regalis
2015-09-11 22:13:44 +03:00
parent ea15397725
commit 29a6260d0f
104 changed files with 46296 additions and 5638 deletions

View File

@@ -153,6 +153,9 @@ namespace Subsurface
switch (commands[0].ToLower())
{
case "createfilelist":
UpdaterUtil.SaveFileList("filelist.xml");
break;
case "spawn":
if (commands.Length == 1) return;
@@ -165,7 +168,7 @@ namespace Subsurface
SinglePlayerMode mode = Game1.GameSession.gameMode as SinglePlayerMode;
if (mode == null) break;
mode.CrewManager.AddCharacter(Character.Controlled);
mode.CrewManager.SelectCharacter(Character.Controlled);
mode.CrewManager.SelectCharacter(null, Character.Controlled);
}
}
else