mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Merge pull request #1335 from LostDragonist/enderalse
Add Enderal SE support
This commit is contained in:
commit
1a15329900
@ -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 | | |
|
||||
|
@ -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}
|
||||
}
|
||||
},
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user