From 98a0c09adb9f24a8d030dd2e84b31c86a175dd29 Mon Sep 17 00:00:00 2001 From: Chris Bessent Date: Mon, 3 Jan 2022 16:18:36 -0700 Subject: [PATCH] Add Sims 4 --- Wabbajack.Common/GameMetaData.cs | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/Wabbajack.Common/GameMetaData.cs b/Wabbajack.Common/GameMetaData.cs index 180c56ce..50091836 100644 --- a/Wabbajack.Common/GameMetaData.cs +++ b/Wabbajack.Common/GameMetaData.cs @@ -57,7 +57,9 @@ namespace Wabbajack.Common [Description("Enderal Special Edition")] EnderalSpecialEdition, [Description("Cyberpunk 2077")] - Cyberpunk2077 + Cyberpunk2077, + [Description("The Sims 4")] + Sims4 } public static class GameExtensions @@ -681,6 +683,22 @@ namespace Wabbajack.Common }, MainExecutable = @"bin\x64\Cyberpunk2077.exe" } + }, + { + Game.Sims4, new GameMetaData + { + Game = Game.Sims4, + SteamIDs = new List {1222670 }, + MO2Name = "The Sims 4", + NexusName = "thesims4", + NexusGameId = 641, + IsGenericMO2Plugin = true, + RequiredFiles = new List + { + @"Game\Bin\TS4_x64.exe" + }, + MainExecutable = @"Game\Bin\TS4_x64.exe" + } } };