- Fixed a NPE caused by clicking on the picture of a booster pack (or another non-card entity) in quest shop.

This commit is contained in:
Agetian
2014-12-05 05:06:17 +00:00
parent ace28a2f06
commit e0e08989b6

View File

@@ -297,6 +297,8 @@ public class MatchUtil {
}
public static boolean canCardBeFlipped(CardView cv) {
if (cv == null) { return false; }
CardStateView altState = cv.getAlternateState();
if (altState == null) { return false; }