diff --git a/OpenRA.FileFormats/Platform.cs b/OpenRA.FileFormats/Platform.cs index b25559e86d..352f36ae7d 100644 --- a/OpenRA.FileFormats/Platform.cs +++ b/OpenRA.FileFormats/Platform.cs @@ -49,6 +49,10 @@ namespace OpenRA { get { + // Use a local directory in the game root if it exists + if (Directory.Exists("Support")) + return "Support" + Path.DirectorySeparatorChar; + var dir = Environment.GetFolderPath(Environment.SpecialFolder.Personal); switch (CurrentPlatform)