From 2317096a91c632d601280eb19e05f7634726e96e Mon Sep 17 00:00:00 2001 From: WEBXOSS <webxoss@gmail.com> Date: Tue, 13 Jun 2017 23:26:12 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix=20WX16-048=20spell?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CardInfo.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/CardInfo.js b/CardInfo.js index 6338348..f96bbe5 100644 --- a/CardInfo.js +++ b/CardInfo.js @@ -119186,15 +119186,16 @@ var CardInfo = { }, },{ source: this, - description: '2315-attached-2', + description: '2315-attached-3', actionAsyn: function () { var cards = concat(this.player.mainDeck.getTopCards(5),this.player.opponent.mainDeck.getTopCards(5)); this.game.trashCards(cards); }, }]; - return this.player.selectSomeAsyn('LAUNCH',effects,1,count).callback(this,function (effect) { - if (!effect) return; - return effect.actionAsyn.call(this); + return this.player.selectSomeAsyn('LAUNCH',effects,1,count).callback(this,function (effects) { + return Callback.forEach(effects,function (effect) { + return effect.actionAsyn.call(this); + },this); }); }); },