Today, I noticed that when one card from the daily combo cards has already been bought, the bot doesn't buy other combo cards.
To solve the problem, I changed line 144 of the file bot/core/tapper.py :
need_cards_count = len(cards)
To:
need_cards_count = len(cards) - len(upgraded_list)
And now it works properly.
[DESCRIBING BUG AND SUGGEST SOLUTION]
Today, I noticed that when one card from the daily combo cards has already been bought, the bot doesn't buy other combo cards.
To solve the problem, I changed line 144 of the file bot/core/tapper.py :
need_cards_count = len(cards)
To:need_cards_count = len(cards) - len(upgraded_list)
And now it works properly.