Skip to content

Commit

Permalink
Revert "Add Tomb Raider I-III Remastered detection (#66)"
Browse files Browse the repository at this point in the history
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 d4abbf4.
  • Loading branch information
cyberrumor committed Dec 14, 2024
1 parent d4abbf4 commit 4cf2b53
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions ammo/controller/game.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,6 @@ class SteamGame:
id=1716740,
)

TombRaider_I_III_Remastered = SteamGame(
name="Tomb Raider I-III Remastered",
id=2478970,
)


class GameController(Controller):
"""
Expand All @@ -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] = []
Expand Down

0 comments on commit 4cf2b53

Please sign in to comment.