From 100007877eeff1c8003a630159056ad1fddb38f9 Mon Sep 17 00:00:00 2001 From: Drazden Date: Sat, 16 Oct 2021 07:21:45 -0400 Subject: [PATCH] Add Terraria/Tmodloader Support --- Wabbajack.DTOs/Game/GameRegistry.cs | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/Wabbajack.DTOs/Game/GameRegistry.cs b/Wabbajack.DTOs/Game/GameRegistry.cs index 6ed5464c..8d2887e1 100644 --- a/Wabbajack.DTOs/Game/GameRegistry.cs +++ b/Wabbajack.DTOs/Game/GameRegistry.cs @@ -385,6 +385,20 @@ namespace Wabbajack.DTOs }, MainExecutable = @"KSP_x64.exe".ToRelativePath() } + }, + { + Game.Terraria, new GameMetaDta + { + Game = Game.Terraria, + SteamIDs = new[] { 1281930 }, + MO2Name = "Terraria", + IsGenericMO2Plugin = true, + RequiredFiles = new[] + { + @"tModLoader.exe".ToRelativePath() + }, + MainExecutable = @"tModLoader.exe".ToRelativePath() + } } }; @@ -464,4 +478,4 @@ namespace Wabbajack.DTOs return Games[game]; } } -} \ No newline at end of file +}