From 33a86c1c1099334f122a8d485ef7c825d6e44dee Mon Sep 17 00:00:00 2001 From: tretrauit Date: Sat, 17 Jun 2023 23:07:59 +0700 Subject: [PATCH] fix: wrong file name why i always type jadelte instead of jadeite --- vollerei/cli/hsr.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/vollerei/cli/hsr.py b/vollerei/cli/hsr.py index 3488b27..4580877 100644 --- a/vollerei/cli/hsr.py +++ b/vollerei/cli/hsr.py @@ -45,7 +45,10 @@ class HSR: print(f"Patching failed with following error: {e}") return print("OK") - print("Jadelte executable is located at:", jadelte_dir.joinpath("jadelte.exe")) + exe_path = jadelte_dir.joinpath("jadeite.exe") + print("Jadelte executable is located at:", exe_path) print( - "Patching succeeded, but note that you need to run the game using Jadelte to use the patch." + "Patching succeeded, but note that you need to run the game using Jadeite to use the patch." ) + print(f'E.g: I_WANT_A_BAN=1 {exe_path} "{self._game.path}"') + print("And for your own sake, please only use testing accounts, as there is an extremely high risk of getting banned.")