Fix card display issue for 3* cards after collecting 5-10 of them.

This commit is contained in:
sigonasr2 2018-11-17 13:43:58 -06:00
parent d834ab824f
commit 3c580f3cb6
2 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@ -183,8 +183,8 @@ public class Player {
e.printStackTrace();
}
} else
if (c.rarity==3 && card_amt>=5 &&
card_amt<11) {
if (c.rarity==3 && (card_amt==5 ||
card_amt==10)) {
//Download the image...
try {
int card_id = c.getCardID();