diff --git a/vollerei/common/functions.py b/vollerei/common/functions.py index 1cc633d..1de930f 100644 --- a/vollerei/common/functions.py +++ b/vollerei/common/functions.py @@ -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()