From ed641f890d47c2725f1d218fc059375ff6272f76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nguy=E1=BB=85n=20Th=E1=BA=BF=20H=C6=B0ng?= Date: Sun, 2 Feb 2025 22:53:27 +0700 Subject: [PATCH] fix(common): remove installed check --- vollerei/common/functions.py | 2 -- 1 file changed, 2 deletions(-) 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()