fix(common): remove installed check

This commit is contained in:
2025-02-02 22:53:27 +07:00
parent 9e64bfc531
commit ed641f890d

View File

@ -219,8 +219,6 @@ def install_archive(game: GameABC, archive_file: Path | IOBase) -> None:
`install_archive()` method instead, which additionally applies required
methods for that game.
"""
if game.is_installed():
raise GameAlreadyInstalledError("Game is already installed.")
archive = _open_archive(archive_file)
archive.extractall(game.path)
archive.close()