forked from mirrors/webxoss-core
fix WX15-070 action
This commit is contained in:
parent
30f50a057e
commit
38e6c7318c
1 changed files with 4 additions and 1 deletions
|
@ -111591,7 +111591,10 @@ var CardInfo = {
|
|||
actionEffects: [{
|
||||
costDown: true,
|
||||
actionAsyn: function () {
|
||||
return this.player.selectOpponentSigniAsyn().callback(this,function (card) {
|
||||
var filter = function (card) {
|
||||
return card.rise;
|
||||
};
|
||||
return this.player.selectSelfSigniAsyn(filter).callback(this,function (card) {
|
||||
if (!card) return;
|
||||
this.game.tillTurnEndSet(this,card,'doubleCrash',true);
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue