Skip to content

Commit

Permalink
Merge pull request #2298 from TinTikls/feature-1
Browse files Browse the repository at this point in the history
Fix daily combo
  • Loading branch information
shamhi authored Sep 1, 2024
2 parents c99f675 + ab6acc2 commit 54a1628
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bot/core/tapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ async def run(self, proxy: str | None) -> None:

if start_bonus_round <= datetime.now() < end_bonus_round:
common_price = sum([upgrade['price'] for upgrade in available_combo_cards])
need_cards_count = len(cards)
need_cards_count = 3 - len(upgraded_list)
possible_cards_count = len(available_combo_cards)
is_combo_accessible = need_cards_count == possible_cards_count

Expand Down

0 comments on commit 54a1628

Please sign in to comment.