forked from mirrors/webxoss-core
🐛 fix WX16-028 1st const
This commit is contained in:
parent
057995218e
commit
b9b415a26d
1 changed files with 1 additions and 1 deletions
|
@ -118096,7 +118096,7 @@ var CardInfo = {
|
||||||
actionAsyn: function () {
|
actionAsyn: function () {
|
||||||
return this.player.selectOptionalAsyn('LAUNCH',[this]).callback(this,function (card) {
|
return this.player.selectOptionalAsyn('LAUNCH',[this]).callback(this,function (card) {
|
||||||
if (!card) return;
|
if (!card) return;
|
||||||
card = this.player.mainDeck.cards(0);
|
card = this.player.mainDeck.cards[0];
|
||||||
if (!card) return;
|
if (!card) return;
|
||||||
card.trash();
|
card.trash();
|
||||||
if (!card.trap) return;
|
if (!card.trap) return;
|
||||||
|
|
Loading…
Reference in a new issue