1
0
Fork 0

🐛 fix PR-373 3rd const

This commit is contained in:
WEBXOSS 2017-06-13 20:53:16 +08:00
parent 648df21225
commit 2d62d360c7

View file

@ -121846,8 +121846,8 @@ var CardInfo = {
auto: 'onMove',
effect: {
triggerCondition: function (event) {
return (card.oldZone === this.player.handZone) &&
(card.newZone === this.player.trashZone);
return (event.card.oldZone === this.player.handZone) &&
(event.card.newZone === this.player.trashZone);
},
costCondition: function () {
return this.player.enoughCost({costBlue: 1}) || this.player.enoughCost({costBlack: 1});