🐛 fix PR-371 not checking card

This commit is contained in:
WEBXOSS 2017-08-22 21:46:08 +08:00
parent c3990a1dbc
commit 0dfc5f6a88

View file

@ -121749,6 +121749,7 @@ var CardInfo = {
return (card.level <= 3);
};
return this.player.selectOpponentSigniAsyn(filter).callback(this,function (card) {
if (!card) return;
card.down();
});
},
@ -121758,6 +121759,7 @@ var CardInfo = {
return (card.level === 5);
};
return this.player.selectOpponentSigniAsyn(filter).callback(this,function (card) {
if (!card) return;
return card.banishAsyn();
});
},