1
0
Fork 0

Merge pull request #52 from Deardrops/fix/wx15-029

fix wx15-029
This commit is contained in:
webxoss 2017-06-07 11:39:45 +08:00 committed by GitHub
commit d9d9106a7e

View file

@ -105712,7 +105712,8 @@ var CardInfo = {
var count = costArg.bet ? 2 : 1;
var player = this.player;
var filter = function (card) {
return card.hasSameColorWith(player.lrig);
return (card.type === 'SIGNI') &&
(card.hasSameColorWith(player.lrig));
};
return this.player.pickCardAsyn(filter,0,count);
}