Commit e7a630cf authored by fallenstardust's avatar fallenstardust

fix 筛选归属

parent 9623487f
......@@ -114,7 +114,11 @@ class CardSearchInfo {
}
if (ot > CardOt.ALL.getId()) {
if(ot == CardOt.NO_EXCLUSIVE.getId()){
if(card.Ot == CardOt.OCG.getId() || card.Ot == CardOt.TCG.getId()){
if (card.Ot == CardOt.OCG.getId() || card.Ot == CardOt.TCG.getId()) {
return false;
}
} else if (ot == CardOt.OCG.getId() || ot == CardOt.TCG.getId()) {
if (card.Ot != ot) {
return false;
}
} else if ((card.Ot & ot) == 0) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment