1
0
mirror of https://github.com/TheFunny/ArisuAutoSweeper synced 2026-06-10 06:54:51 +00:00

fix: commissions

This commit is contained in:
RedDeadDepresso
2024-01-07 21:06:08 +00:00
committed by YoursFunny
parent f4ad80d17e
commit e5fe0d096c
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ class Mission(MissionUI, CommissionsUI):
return 20 if stage >= 9 else 10 + 5 * math.floor(stage / 5)
case "XP" | "CR":
stage = int(self.current_stage, base=10)
return 40 if stage >= 9 else 5 + 15 * math.floor(stage / 4)
return 40 if stage >= 8 else stage * 5
@property
def mission_info(self) -> list: