1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-09 18:39:04 +08:00

Fix: [ALAS] Global MuMu 12 id

This commit is contained in:
LmeSzinc 2024-04-19 22:38:49 +08:00
parent a59a3af2a8
commit 6c09e29aca

View File

@ -105,7 +105,7 @@ class EmulatorInstanceBase:
Returns:
int: Instance ID, or None if this is not a MuMu 12 instance
"""
res = re.search(r'MuMuPlayer-12.0-(\d+)', self.name)
res = re.search(r'MuMuPlayer(?:Global)?-12.0-(\d+)', self.name)
if res:
return int(res.group(1))
res = re.search(r'YXArkNights-12.0-(\d+)', self.name)