mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
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:
parent
5b77574b5e
commit
16a2132aad
@ -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,
|
||||
}
|
||||
|
@ -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
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user