From 607fb263d5c1f773f724e00bcde50e4104f6be0b Mon Sep 17 00:00:00 2001 From: Luca <52624146+EzioTheDeadPoet@users.noreply.github.com> Date: Sun, 25 Oct 2020 23:05:14 +0100 Subject: [PATCH] added Dishonored mainly to test the non MO2 dependent list compiler. --- Wabbajack.Common/GameMetaData.cs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/Wabbajack.Common/GameMetaData.cs b/Wabbajack.Common/GameMetaData.cs index aa9279ff..bef77305 100644 --- a/Wabbajack.Common/GameMetaData.cs +++ b/Wabbajack.Common/GameMetaData.cs @@ -34,6 +34,7 @@ namespace Wabbajack.Common //MO2 Non-BGS Games [Description("Darkest Dungeon")] DarkestDungeon, + Dishonored, Witcher3, [Description("Stardew Valley")] StardewValley @@ -441,6 +442,22 @@ namespace Wabbajack.Common MainExecutable = "_windows\\Darkest.exe" } }, + { + Game.Dishonored, new GameMetaData + { + Game = Game.Dishonored, + NexusName = "dishonored", + MO2Name = "Dishonored", + NexusGameId = 802, + SteamIDs = new List {205100}, + GOGIDs = new List{1701063787}, + RequiredFiles = new List + { + "Binaries\\Win32\\Dishonored.exe" + }, + MainExecutable = "Binaries\\Win32\\Dishonored.exe" + } + }, { Game.Witcher3, new GameMetaData { @@ -484,3 +501,4 @@ namespace Wabbajack.Common } } +