Add Mount & Blade II: Bannerlord support? (#2280)

* Update Game.cs

Adding Mount & Blade II: Bannerlord as a game description

* Update GameRegistry.cs

Adding Mount & Blade II: Bannerlord to game registry

* Update GameRegistry.cs

Setting IsGenericMO2Plugin = false to true for M&B Bannerlord
This commit is contained in:
Maelstrom 2023-01-21 18:29:08 -05:00 committed by GitHub
parent 5b77574b5e
commit 16a2132aad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 0 deletions

View File

@ -49,6 +49,7 @@ public enum Game
[Description("Karryn's Prison")]
KarrynsPrison,
[Description("Mount & Blade II: Bannerlord")] MountAndBlade2Bannerlord,
[Description("Valheim")]Valheim,
[Description("Modding Tools")] ModdingTools,
}

View File

@ -510,6 +510,23 @@ public static class GameRegistry
MainExecutable = "valheim.exe".ToRelativePath()
}
},
{
Game.MountAndBlade2Bannerlord, new GameMetaData
{
Game = Game.MountAndBlade2Bannerlord,
NexusName = "mountandblade2bannerlord",
NexusGameId = 3174,
MO2Name = "Mount & Blade II: Bannerlord",
MO2ArchiveName = "mountandblade2",
SteamIDs = new[] { 261550 },
IsGenericMO2Plugin = true,
RequiredFiles = new []
{
@"bin\Win64_Shipping_Client\Bannerlord.exe".ToRelativePath()
},
MainExecutable = @"bin\Win64_Shipping_Client\Bannerlord.exe".ToRelativePath()
}
},
{
Game.ModdingTools, new GameMetaData
{