Merge pull request #1232 from EzioTheDeadPoet/add-No-Man's-Sky-Support

Add no man's sky support
This commit is contained in:
Timothy Baldridge 2020-12-29 17:17:14 -07:00 committed by GitHub
commit 789892da9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,7 +40,8 @@ namespace Wabbajack.Common
[Description("Stardew Valley")] [Description("Stardew Valley")]
StardewValley, StardewValley,
KingdomComeDeliverance, KingdomComeDeliverance,
MechWarrior5Mercenaries MechWarrior5Mercenaries,
NoMansSky
} }
public static class GameExtensions public static class GameExtensions
@ -469,7 +470,7 @@ namespace Wabbajack.Common
{ {
"Binaries\\Win32\\Dishonored.exe" "Binaries\\Win32\\Dishonored.exe"
}, },
MainExecutable = "Binaries\\Win32\\Dishonored.exe" MainExecutable = @"Binaries\Win32\Dishonored.exe"
} }
}, },
{ {
@ -538,6 +539,22 @@ namespace Wabbajack.Common
}, },
MainExecutable = @"MW5Mercs\Binaries\Win64\MechWarrior-Win64-Shipping.exe" MainExecutable = @"MW5Mercs\Binaries\Win64\MechWarrior-Win64-Shipping.exe"
} }
},
{
Game.NoMansSky, new GameMetaData
{
Game = Game.NoMansSky,
NexusName = "nomanssky",
NexusGameId = 1634,
MO2Name = "Mo Man's Sky",
SteamIDs = new List<int>{275850},
GOGIDs = new List<int>{1446213994},
RequiredFiles = new List<string>
{
@"Binaries\NMS.exe"
},
MainExecutable = @"Binaries\NMS.exe"
}
} }
}; };