From 9d95abd3e4de56abcd4b306d0878b0130a40a487 Mon Sep 17 00:00:00 2001 From: ixanza Date: Sat, 27 Nov 2021 16:21:11 +0800 Subject: [PATCH] Add Cyberpunk 2077 Support --- Wabbajack.DTOs/Game/GameRegistry.cs | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/Wabbajack.DTOs/Game/GameRegistry.cs b/Wabbajack.DTOs/Game/GameRegistry.cs index b4de5752..75d5c7ef 100644 --- a/Wabbajack.DTOs/Game/GameRegistry.cs +++ b/Wabbajack.DTOs/Game/GameRegistry.cs @@ -399,6 +399,22 @@ public static class GameRegistry }, MainExecutable = @"tModLoader.exe".ToRelativePath() } + }, + { + Game.CyberPunk2077, new GameMetaData + { + Game = Game.Cyberpunk2077, + SteamIDs = new[] {1091500}, + MO2Name = "Cyberpunk 2077", + NexusName = "cyberpunk2077", + NexusGameId = 3333, + IsGenericMO2Plugin = true, + RequiredFiles = new[] + { + @"REDprelauncher.exe".ToRelativePath() + }, + MainExecutable = @"REDprelauncher.exe".ToRelativePath() + } } }; @@ -478,4 +494,4 @@ public static class GameRegistry { return Games[game]; } -} \ No newline at end of file +}