Add Terraria/Tmodloader Support

This commit is contained in:
Drazden 2021-10-16 07:21:45 -04:00 committed by GitHub
parent 0b88b8bf37
commit 100007877e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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];
}
}
}
}