From 7ca33c62b29b09716fbe0b83747460b592da9a82 Mon Sep 17 00:00:00 2001 From: tretrauit Date: Tue, 20 Jun 2023 18:50:17 +0700 Subject: [PATCH] cli: fix jadeite name It's jadeite --- vollerei/cli/hsr.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vollerei/cli/hsr.py b/vollerei/cli/hsr.py index 24a413b..9414637 100644 --- a/vollerei/cli/hsr.py +++ b/vollerei/cli/hsr.py @@ -38,14 +38,14 @@ class HSR: def __patch_jadeite(self): try: print("Installing patch...", end=" ") - jadelte_dir = self._patcher.patch_game(game=self._game) + jadeite_dir = self._patcher.patch_game(game=self._game) except PatcherError as e: print("FAILED") print(f"Patching failed with following error: {e}") return print("OK") - exe_path = jadelte_dir.joinpath("jadeite.exe") - print("Jadelte executable is located at:", exe_path) + exe_path = jadeite_dir.joinpath("jadeite.exe") + print("jadeite executable is located at:", exe_path) print( "Installation succeeded, but note that you need to run the game using " + "Jadeite to use the patch."