1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-11 22:08:20 +08:00

display sample as format rather than hard coded to indicate user can specify any number of ship types

This commit is contained in:
nEEtdo0d
2020-08-07 22:29:50 -04:00
parent a14ab25eb9
commit 6dea956997

View File

@@ -168,7 +168,7 @@ def main(ini_name=''):
hp_withdraw.add_argument('--low_hp_withdraw_threshold', default=default('--low_hp_withdraw_threshold'), help='When HP is below the threshold, retreat')
# 退役选项
retire = setting_parser.add_argument_group('Retirement settings', 'Enhancement order by ship type is supported in alas.ini: Use \"enhance_order_string = cv > bb > dd\" to enable otherwise leave as \"enhance_order_string = \" to disable')
retire = setting_parser.add_argument_group('Retirement settings', 'Enhancement order by ship type is supported in alas.ini: Use format \"enhance_order_string = cv > bb > ...\" to enable otherwise leave as \"enhance_order_string = \" to disable')
retire.add_argument('--enable_retirement', default=default('--enable_retirement'), choices=['yes', 'no'])
retire.add_argument('--retire_method', default=default('--retire_method'), choices=['enhance', 'one_click_retire', 'old_retire'])
retire.add_argument('--retire_amount', default=default('--retire_amount'), choices=['retire_all', 'retire_10'])