Skip to content

Commit

Permalink
fix: Echo of War missing 1 required argument
Browse files Browse the repository at this point in the history
  • Loading branch information
moesnow committed Sep 3, 2023
1 parent cc8dae8 commit 10c4f09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/weekly/echoofwar.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def start():
return
elif reward_count <= max_count:
config.save_timestamp("echo_of_war_timestamp")
return Power.run_instances("历战余响", config.instance_names["历战余响"], min(reward_count, max_count))
return Power.run_instances("历战余响", config.instance_names["历战余响"], 30, min(reward_count, max_count))
return False
except Exception as e:
logger.error(_("历战余响失败: {error}").format(error=e))
Expand Down

0 comments on commit 10c4f09

Please sign in to comment.