cli: fix jadeite name

It's jadeite
This commit is contained in:
tretrauit 2023-06-20 18:50:17 +07:00
parent 32d6ca1891
commit 7ca33c62b2

View File

@ -38,14 +38,14 @@ class HSR:
def __patch_jadeite(self): def __patch_jadeite(self):
try: try:
print("Installing patch...", end=" ") 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: except PatcherError as e:
print("FAILED") print("FAILED")
print(f"Patching failed with following error: {e}") print(f"Patching failed with following error: {e}")
return return
print("OK") print("OK")
exe_path = jadelte_dir.joinpath("jadeite.exe") exe_path = jadeite_dir.joinpath("jadeite.exe")
print("Jadelte executable is located at:", exe_path) print("jadeite executable is located at:", exe_path)
print( print(
"Installation succeeded, but note that you need to run the game using " "Installation succeeded, but note that you need to run the game using "
+ "Jadeite to use the patch." + "Jadeite to use the patch."