mirror of
https://github.com/webxoss/webxoss-core.git
synced 2024-11-20 06:49:53 +01:00
fix WX15-001 action
This commit is contained in:
parent
469b89b993
commit
7026277f60
1 changed files with 1 additions and 1 deletions
|
@ -105080,7 +105080,7 @@ var CardInfo = {
|
||||||
return this.player.showCardsAsyn(cards).callback(this,function () {
|
return this.player.showCardsAsyn(cards).callback(this,function () {
|
||||||
cards = this.player.opponent.lrigDeck.cards.filter(function (card) {
|
cards = this.player.opponent.lrigDeck.cards.filter(function (card) {
|
||||||
// 排除双面的第二面
|
// 排除双面的第二面
|
||||||
return !card.sideB;
|
return !card.sideA;
|
||||||
},this);
|
},this);
|
||||||
if (cards.length <= 3) return cards;
|
if (cards.length <= 3) return cards;
|
||||||
return this.player.opponent.selectSomeAsyn('REVEAL',cards,3,3);
|
return this.player.opponent.selectSomeAsyn('REVEAL',cards,3,3);
|
||||||
|
|
Loading…
Reference in a new issue