1
0
Fork 1
mirror of https://github.com/webxoss/webxoss-core.git synced 2025-03-24 20:07:49 +01:00

fix WX15-070 action

This commit is contained in:
WEBXOSS 2017-04-09 20:50:47 +08:00
parent 30f50a057e
commit 38e6c7318c

View file

@ -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);
});