From 383549b52770c1706560b07cd2adb5e9527af174 Mon Sep 17 00:00:00 2001 From: WEBXOSS Date: Fri, 23 Dec 2016 12:17:20 +0800 Subject: [PATCH] Hotfix WX14-028 --- CardInfo.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/CardInfo.js b/CardInfo.js index 75e83a5..a371db7 100644 --- a/CardInfo.js +++ b/CardInfo.js @@ -116812,15 +116812,14 @@ var CardInfo = { ], burstEffect: { actionAsyn: function () { - var filter = function () { - return true; + var filter = function (card) { + return !card.hasColor('colorless'); }; return this.player.searchAsyn(filter,1,0,true).callback(this,function (cards) { var card = cards[0]; if (!card) return; - if (card.hasColor('colorless')) return; filter = function (c) { - return !c.hasSameColorWith(card) + return !c.hasColor('colorless') && !c.hasSameColorWith(card) && c !== card; } return this.player.searchAsyn(filter,1,0,true).callback(this,function (cards) { if (!cards.length) return;