mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-24 17:42:46 +00:00
Opt: [ALAS] Skip trying nemu_ipc on MuMu Global
This commit is contained in:
parent
4da677a084
commit
543dd27e0e
@ -469,6 +469,9 @@ class NemuIpc(Platform):
|
||||
"""
|
||||
# Try existing settings first
|
||||
if self.config.EmulatorInfo_path:
|
||||
if 'MuMuPlayerGlobal' in self.config.EmulatorInfo_path:
|
||||
logger.info(f'nemu_ipc is not available on MuMuPlayerGlobal, {self.config.EmulatorInfo_path}')
|
||||
raise RequestHumanTakeover
|
||||
folder = os.path.abspath(os.path.join(self.config.EmulatorInfo_path, '../../'))
|
||||
index = NemuIpcImpl.serial_to_id(self.serial)
|
||||
if index is not None:
|
||||
@ -488,6 +491,9 @@ class NemuIpc(Platform):
|
||||
if self.emulator_instance is None:
|
||||
logger.error('Unable to use NemuIpc because emulator instance not found')
|
||||
raise RequestHumanTakeover
|
||||
if 'MuMuPlayerGlobal' in self.emulator_instance.path:
|
||||
logger.info(f'nemu_ipc is not available on MuMuPlayerGlobal, {self.emulator_instance.path}')
|
||||
raise RequestHumanTakeover
|
||||
try:
|
||||
return NemuIpcImpl(
|
||||
nemu_folder=self.emulator_instance.emulator.abspath('../'),
|
||||
|
Loading…
Reference in New Issue
Block a user