Allow the game root directory to be moved away from the binaries.

This commit is contained in:
Paul Chote
2020-11-21 15:40:57 +00:00
committed by teinarss
parent dd0b08d54a
commit 6ad5b9ebc4
7 changed files with 78 additions and 8 deletions

View File

@@ -31,7 +31,7 @@ namespace OpenRA.UtilityCommands
if (args[2] == "user" || args[2] == "both")
type |= ModRegistration.User;
new ExternalMods().Register(utility.ModData.Manifest, args[1], type);
new ExternalMods().Register(utility.ModData.Manifest, args[1], Enumerable.Empty<string>(), type);
}
}
}