From 4cf2b53a9bf6190607922fd74e306dccc552593a Mon Sep 17 00:00:00 2001 From: cyberrumor Date: Sat, 14 Dec 2024 15:41:32 -0800 Subject: [PATCH] Revert "Add Tomb Raider I-III Remastered detection (#66)" The vast majority of Tomb Raider I-III Remastered mods are asset replacers that work by overwriting the original game files. The best way to solve this problem is with a VFS (similar implementation to MO2). This is outside the scope of ammo since it would require ammo to launch the game in order to expose the VFS to the game. This reverts commit d4abbf4192b108960a41ab07bcfd4dca35d86d84. --- ammo/controller/game.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/ammo/controller/game.py b/ammo/controller/game.py index 6b8ef11..887a7ee 100755 --- a/ammo/controller/game.py +++ b/ammo/controller/game.py @@ -114,11 +114,6 @@ class SteamGame: id=1716740, ) -TombRaider_I_III_Remastered = SteamGame( - name="Tomb Raider I-III Remastered", - id=2478970, -) - class GameController(Controller): """ @@ -142,7 +137,6 @@ def __init__(self, args): Skyrim, SkyrimSpecialEdition, Starfield, - TombRaider_I_III_Remastered, ] self.downloads = self.args.downloads.resolve(strict=True) self.games: list[GameSelection | BethesdaGameSelection] = []