Load assets using absolute paths. Fixes #6717.
This commit is contained in:
@@ -114,9 +114,7 @@ namespace OpenRA
|
||||
if (dir.StartsWith("~"))
|
||||
dir = dir.Substring(1);
|
||||
|
||||
// Paths starting with ^ are relative to the user directory
|
||||
if (dir.StartsWith("^"))
|
||||
dir = Platform.SupportDir + dir.Substring(1);
|
||||
dir = Platform.ResolvePath(dir);
|
||||
|
||||
if (!Directory.Exists(dir))
|
||||
return noMaps;
|
||||
|
||||
Reference in New Issue
Block a user