From 38e6c7318c08061e7519d550e8c92bca4cc011e3 Mon Sep 17 00:00:00 2001 From: WEBXOSS Date: Sun, 9 Apr 2017 20:50:47 +0800 Subject: [PATCH] fix WX15-070 action --- CardInfo.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CardInfo.js b/CardInfo.js index 6c7def3..b16ff8d 100644 --- a/CardInfo.js +++ b/CardInfo.js @@ -111591,7 +111591,10 @@ var CardInfo = { actionEffects: [{ costDown: true, actionAsyn: function () { - return this.player.selectOpponentSigniAsyn().callback(this,function (card) { + var filter = function (card) { + return card.rise; + }; + return this.player.selectSelfSigniAsyn(filter).callback(this,function (card) { if (!card) return; this.game.tillTurnEndSet(this,card,'doubleCrash',true); });