From 0f485f58b93ab580c62335beffaa8f5620845e12 Mon Sep 17 00:00:00 2001 From: WEBXOSS Date: Thu, 17 Aug 2017 22:16:29 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix=20PR-373?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CardInfo.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CardInfo.js b/CardInfo.js index 50a65d4..550b05e 100644 --- a/CardInfo.js +++ b/CardInfo.js @@ -121862,8 +121862,8 @@ var CardInfo = { }, effect: { triggerCondition: function (event) { - return (card.oldZone === this.player.handZone) && - (card.newZone === this.player.trashZone); + return (event.oldZone === this.player.handZone) && + (event.newZone === this.player.trashZone); }, condition: function () { var card = this.getOpposingSigni(); @@ -121879,8 +121879,8 @@ var CardInfo = { auto: 'onMove', effect: { triggerCondition: function (event) { - return (event.card.oldZone === this.player.handZone) && - (event.card.newZone === this.player.trashZone); + return (event.oldZone === this.player.handZone) && + (event.newZone === this.player.trashZone); }, costCondition: function () { return this.player.enoughCost({costBlue: 1}) || this.player.enoughCost({costBlack: 1});