mirror of
https://github.com/webxoss/webxoss-core.git
synced 2024-11-20 06:49:53 +01:00
🐛 hotfix WD20-004 onPlay
This commit is contained in:
parent
2a311c7486
commit
c537571c71
1 changed files with 4 additions and 1 deletions
|
@ -120597,7 +120597,10 @@ var CardInfo = {
|
|||
costCoin: 2,
|
||||
actionAsyn: function () {
|
||||
this.player.draw(1);
|
||||
return this.player.discardAsyn(1);
|
||||
return this.player.selectAsyn('TARGET',this.player.hands).callback(this,function (card) {
|
||||
if (!card) return;
|
||||
card.moveTo(this.player.enerZone);
|
||||
});
|
||||
},
|
||||
}],
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue