forked from mirrors/webxoss-core
🐛 fix PR-373 3rd const
This commit is contained in:
parent
648df21225
commit
2d62d360c7
1 changed files with 2 additions and 2 deletions
|
@ -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});
|
||||
|
|
Loading…
Reference in a new issue