Correct the support dir location in ExtractSettingsDocsCommand

This commit is contained in:
abcdefg30
2020-04-25 20:47:38 +02:00
committed by Paul Chote
parent 86a7a0bd6c
commit 089dd233a5

View File

@@ -40,8 +40,14 @@ namespace OpenRA.Mods.Common.UtilityCommands
Console.WriteLine("All settings can be changed by starting the game via a command-line parameter like `Game.Mod=ra`."); Console.WriteLine("All settings can be changed by starting the game via a command-line parameter like `Game.Mod=ra`.");
Console.WriteLine(); Console.WriteLine();
Console.WriteLine("## Location"); Console.WriteLine("## Location");
Console.WriteLine("* Windows: `My Documents\\OpenRA\\settings.yaml`"); Console.WriteLine("* Windows: `%APPDATA%\\OpenRA\\settings.yaml`");
Console.WriteLine("* Mac OS X: `~/Library/Application Support/OpenRA/settings.yaml`"); Console.WriteLine("* Mac OS X: `~/Library/Application Support/OpenRA/settings.yaml`");
Console.WriteLine("* Linux `~/.config/openra/settings.yaml`");
Console.WriteLine();
Console.WriteLine(
"Older releases (before playtest-20190825) used different locations, " +
"which newer versions may continue to use in some circumstances:");
Console.WriteLine("* Windows: `%USERPROFILE%\\Documents\\OpenRA\\settings.yaml`");
Console.WriteLine("* Linux `~/.openra/settings.yaml`"); Console.WriteLine("* Linux `~/.openra/settings.yaml`");
Console.WriteLine(); Console.WriteLine();
Console.WriteLine( Console.WriteLine(