Merge pull request #1335 from LostDragonist/enderalse

Add Enderal SE support
This commit is contained in:
Timothy Baldridge 2021-02-24 15:31:40 -07:00 committed by GitHub
commit 1a15329900
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 2 deletions

View File

@ -24,6 +24,7 @@ This is needed, since the EGS has no public database of its game IDs.
| Skyrim | Steam | | |
| Skyrim Special Edition | Steam | | |
| Enderal | Steam | | |
| Enderal Special Edition | Steam | | |
| Fallout 4 | Steam | | |
| Skyrim VR | Steam | | |
| Fallout 4 VR | Steam | | |

View File

@ -46,7 +46,9 @@ namespace Wabbajack.Common
DragonAge2,
DragonAgeInquisition,
[Description("Kerbal Space Program")]
KerbalSpaceProgram
KerbalSpaceProgram,
[Description("Enderal Special Edition")]
EnderalSpecialEdition
}
public static class GameExtensions
@ -430,7 +432,26 @@ namespace Wabbajack.Common
{
"TESV.exe"
},
MainExecutable = "TESV.exe"
MainExecutable = "TESV.exe",
CommonlyConfusedWith = new []{Game.EnderalSpecialEdition},
}
},
{
Game.EnderalSpecialEdition, new GameMetaData
{
SupportedModManager = ModManager.MO2,
Game = Game.EnderalSpecialEdition,
NexusName = "enderalspecialedition",
NexusGameId = 3685,
MO2Name = "Enderal Special Edition",
MO2ArchiveName = "enderalse",
SteamIDs = new List<int>{976620},
RequiredFiles = new List<string>
{
"SkyrimSE.exe"
},
MainExecutable = "SkyrimSE.exe",
CommonlyConfusedWith = new []{Game.Enderal}
}
},
{