This commit is contained in:
parent
ad720dfa14
commit
45309f9ab2
1 changed files with 2 additions and 2 deletions
|
@ -23,7 +23,7 @@ class RogueSolver(BaseSolver):
|
|||
def run(self) -> bool:
|
||||
if not config.conf.RG:
|
||||
return True
|
||||
if config.conf.maa_rg_theme != "Sarkaz" or config.conf.rogue.mode != 1:
|
||||
if config.conf.maa_rg_theme != "Sarkaz": # or config.conf.rogue.mode != 1
|
||||
return True
|
||||
if self.scheduler_stop_time:
|
||||
self.deadline = self.scheduler_stop_time - timedelta(minutes=1)
|
||||
|
@ -76,7 +76,7 @@ class RogueSolver(BaseSolver):
|
|||
self.tap((330, 870))
|
||||
|
||||
elif scene == Scene.ROGUE_MAIN:
|
||||
if config.conf.rogue.mode == 1 and detect_layer() != 1:
|
||||
if detect_layer() != 1: # config.conf.rogue.mode == 1 and
|
||||
RogueAbandonExploreSolver().run()
|
||||
return
|
||||
if config.conf.rogue.squad == "点刺成锭分队":
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue