1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-03 17:00:16 -09:00

Added search by sub type in deck editor.

This commit is contained in:
magenoxx 2011-09-28 09:00:15 +04:00
parent b031eb5ebf
commit 614a3b0d13

View file

@ -97,6 +97,16 @@ public class FilterCard<T extends FilterCard<T>> extends FilterObject<Card, Filt
break;
}
}
if (filterOut) {
for (String subType : card.getSubtype()) {
if (subType.equalsIgnoreCase(text)) {
filterOut = false;
break;
}
}
}
if (filterOut)
return notFilter;
}