From fba6cecc38034caaeba35059161f864d1e5c9608 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nguy=E1=BB=85n=20Th=E1=BA=BF=20H=C6=B0ng?= Date: Wed, 15 Jan 2025 15:13:56 +0700 Subject: [PATCH] fix(common): add 'hdiffmap.json' to ignore list So we don't extract the file lol. --- vollerei/common/functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vollerei/common/functions.py b/vollerei/common/functions.py index 8e0321d..1cc633d 100644 --- a/vollerei/common/functions.py +++ b/vollerei/common/functions.py @@ -76,7 +76,7 @@ def apply_update_archive( files = archive.namelist() # Don't extract these files (they're useless and if the game isn't patched then # it'll raise 31-4xxx error in Genshin) - for file in ["deletefiles.txt", "hdifffiles.txt"]: + for file in ["deletefiles.txt", "hdifffiles.txt", "hdiffmap.json"]: try: files.remove(file) except ValueError: