forked from mirrors/webxoss-core
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);
|
},this);
|
||||||
return this.player.selectAsyn('SUMMON_SIGNI',cards).callback(this,function (card) {
|
return this.player.selectAsyn('SUMMON_SIGNI',cards).callback(this,function (card) {
|
||||||
if (!card || !card.canSummon()) return;
|
if (!card || !card.canSummon()) return;
|
||||||
return card.summonAsyn();
|
return card.summonAsyn().callback(this,function () {
|
||||||
|
card.trashWhenTurnEnd();
|
||||||
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}],
|
}],
|
||||||
|
@ -109420,7 +109422,9 @@ var CardInfo = {
|
||||||
},this);
|
},this);
|
||||||
return this.player.selectAsyn('SUMMON_SIGNI',cards).callback(this,function (card) {
|
return this.player.selectAsyn('SUMMON_SIGNI',cards).callback(this,function (card) {
|
||||||
if (!card || !card.canSummon()) return;
|
if (!card || !card.canSummon()) return;
|
||||||
return card.summonAsyn();
|
return card.summonAsyn().callback(this,function () {
|
||||||
|
card.trashWhenTurnEnd();
|
||||||
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}],
|
}],
|
||||||
|
|
Loading…
Reference in a new issue