0
0
mirror of https://github.com/ok-oldking/ok-wuthering-waves.git synced 2025-04-24 08:25:16 +00:00

大世界4C, 限制必须选3个BOSS

This commit is contained in:
firedcto@gmail.com 2025-01-06 18:36:38 +08:00
parent 319b45591d
commit 1ecb44772c
3 changed files with 4 additions and 4 deletions

Binary file not shown.

View File

@ -418,8 +418,8 @@ msgstr "APP启动后自动启动游戏"
msgid "Auto Login Success"
msgstr "自动登录成功"
msgid "Must choose at least 2 Boss to Farm"
msgstr "必须至少选择个Boss"
msgid "Must choose at least 3 Boss to Farm"
msgstr "必须至少选择3个Boss"
msgid "Can not auto combat because team can only have one healer at most"
msgstr "无法自动战斗, 队伍最多只能有一个治疗角色"

View File

@ -105,6 +105,6 @@ class FarmWorldBossTask(BaseCombatTask):
dropped = self.walk_find_echo()
self.incr_drop(dropped)
if count <= 1:
self.log_error('Must choose at least 2 Boss to Farm', notify=True)
if count <= 2:
self.log_error('Must choose at least 3 Boss to Farm', notify=True)
return