From b9e0cc3026d3bfe916a8b35d6aba5c065594f9c8 Mon Sep 17 00:00:00 2001 From: YoursFunny Date: Tue, 14 Nov 2023 12:33:17 +0800 Subject: [PATCH] fix: adapt for BA --- module/device/connection.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/module/device/connection.py b/module/device/connection.py index e2e5dfd..d0f087e 100644 --- a/module/device/connection.py +++ b/module/device/connection.py @@ -863,8 +863,8 @@ class Connection(ConnectionAttr): # Auto package detection if len(packages) == 0: - logger.critical(f'No Star Rail package found, ' - f'please confirm Star Rail has been installed on device "{self.serial}"') + logger.critical(f'No Blue Archive package found, ' + f'please confirm Blue Archive has been installed on device "{self.serial}"') raise RequestHumanTakeover if len(packages) == 1: logger.info('Auto package detection found only one package, using it') @@ -877,6 +877,6 @@ class Connection(ConnectionAttr): # set_server(self.package) else: logger.critical( - f'Multiple Star Rail packages found, auto package detection cannot decide which to choose, ' + f'Multiple Blue Archive packages found, auto package detection cannot decide which to choose, ' 'please copy one of the available devices listed above to Alas.Emulator.PackageName') raise RequestHumanTakeover