mirror of
https://github.com/webxoss/webxoss-core.git
synced 2025-01-19 03:56:06 +01:00
fix WX13-009 WX13-017 WX13-023 do not trash
This commit is contained in:
parent
bb0d7637e3
commit
538529cff9
1 changed files with 6 additions and 2 deletions
|
@ -109009,7 +109009,9 @@ var CardInfo = {
|
|||
},this);
|
||||
return this.player.selectAsyn('SUMMON_SIGNI',cards).callback(this,function (card) {
|
||||
if (!card || !card.canSummon()) return;
|
||||
return card.summonAsyn();
|
||||
return card.summonAsyn().callback(this,function () {
|
||||
card.trashWhenTurnEnd();
|
||||
});
|
||||
});
|
||||
}
|
||||
}],
|
||||
|
@ -109420,7 +109422,9 @@ var CardInfo = {
|
|||
},this);
|
||||
return this.player.selectAsyn('SUMMON_SIGNI',cards).callback(this,function (card) {
|
||||
if (!card || !card.canSummon()) return;
|
||||
return card.summonAsyn();
|
||||
return card.summonAsyn().callback(this,function () {
|
||||
card.trashWhenTurnEnd();
|
||||
});
|
||||
});
|
||||
}
|
||||
}],
|
||||
|
|
Loading…
Reference in a new issue