mirror of
https://github.com/0O0o0oOoO00/Alas.git
synced 2026-05-14 11:09:25 +08:00
fix: do not run commission, reward and reward logic error
This commit is contained in:
@@ -614,7 +614,7 @@ class RewardCommission(UI, InfoHandler):
|
||||
|
||||
class RewardCommission(RewardCommission):
|
||||
def run(self):
|
||||
if not self.config.full_config.Commission_Commission_DoNotRun:
|
||||
if self.config.full_config.Commission_Commission_DoNotRun:
|
||||
self.config.task_delay(minute=6 * 60)
|
||||
self.config.task_stop()
|
||||
else:
|
||||
|
||||
@@ -594,7 +594,7 @@ class RewardResearch(ResearchSelector, ResearchQueue, StorageHandler):
|
||||
|
||||
class RewardResearch(RewardResearch):
|
||||
def run(self):
|
||||
if not self.config.full_config.Research_Research_DoNotRun:
|
||||
if self.config.full_config.Research_Research_DoNotRun:
|
||||
self.config.task_delay(minute=6 * 60)
|
||||
self.config.task_stop()
|
||||
else:
|
||||
|
||||
@@ -339,7 +339,7 @@ class Reward(UI):
|
||||
|
||||
class Reward(Reward):
|
||||
def run(self):
|
||||
if not self.config.full_config.Reward_Reward_DoNotRun:
|
||||
if self.config.full_config.Reward_Reward_DoNotRun:
|
||||
self.config.task_delay(minute=6 * 60)
|
||||
self.config.task_stop()
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user