From 7026277f60545f6330e0d1b4af4cd9332464a02f Mon Sep 17 00:00:00 2001 From: WEBXOSS Date: Sun, 14 May 2017 22:33:58 +0800 Subject: [PATCH] fix WX15-001 action --- CardInfo.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CardInfo.js b/CardInfo.js index 349af51..1711922 100644 --- a/CardInfo.js +++ b/CardInfo.js @@ -105080,7 +105080,7 @@ var CardInfo = { return this.player.showCardsAsyn(cards).callback(this,function () { cards = this.player.opponent.lrigDeck.cards.filter(function (card) { // 排除双面的第二面 - return !card.sideB; + return !card.sideA; },this); if (cards.length <= 3) return cards; return this.player.opponent.selectSomeAsyn('REVEAL',cards,3,3);