Fix card display issue for 3* cards after collecting 5-10 of them.
This commit is contained in:
parent
d834ab824f
commit
3c580f3cb6
Binary file not shown.
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user