From 484aca0a2ae4af2650a5e098d95a8a11af19393a Mon Sep 17 00:00:00 2001 From: tretrauit Date: Mon, 26 Jun 2023 17:20:59 +0700 Subject: [PATCH] cli/hsr: add more unnecessary messages --- vollerei/cli/hsr.py | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/vollerei/cli/hsr.py b/vollerei/cli/hsr.py index cc3e22e..ab49326 100644 --- a/vollerei/cli/hsr.py +++ b/vollerei/cli/hsr.py @@ -79,9 +79,10 @@ class HSR: print( "Windows is supported officialy by the game, so no patching is needed." ) - if not ask("Do you still want to patch?"): - print("Patching aborted.") - return + print("By patching you are breaking the ToS, use at your own risk.") + if not ask("Do you want to patch the game?"): + print("Patching aborted.") + return print("Checking telemetry hosts...", end=" ") telemetry_list = self._patcher.check_telemetry() if telemetry_list: @@ -89,10 +90,13 @@ class HSR: print("Telemetry hosts found: ") for host in telemetry_list: print(f" - {host}") - if not ask( - "Do you want to block these hosts? (Without blocking you can't use the patch)" - ): + print( + "To prevent the game from sending data about the patch, " + + "we need to block these hosts." + ) + if not ask("Do you want to block these hosts?"): print("Patching aborted.") + print("Please block these hosts manually then try again.") return try: self._patcher.block_telemetry(telemetry_list=telemetry_list)