mirror of
https://github.com/LmeSzinc/AzurLaneAutoScript.git
synced 2025-04-04 03:21:20 +08:00
Adjustment for commission suffix judgement
This commit is contained in:
parent
33f1b3b349
commit
b642413e2a
@ -114,6 +114,8 @@ class RewardCommission(UI, InfoHandler):
|
||||
"""
|
||||
# Count Commission
|
||||
total = daily.add_by_eq(urgent)
|
||||
# Commissions with higher suffix are always below those with smaller suffix
|
||||
# Reverse the commission list to choose commissions with higher suffix first
|
||||
total = total[::-1]
|
||||
self.max_commission = 4
|
||||
for comm in total:
|
||||
|
@ -326,7 +326,7 @@ class Commission:
|
||||
return False
|
||||
if self.repeat_count != other.repeat_count:
|
||||
return False
|
||||
if self.suffix != other.suffix:
|
||||
if self.genre in ['extra_oil', 'night_oil'] and self.suffix != other.suffix:
|
||||
return False
|
||||
|
||||
return True
|
||||
|
Loading…
x
Reference in New Issue
Block a user