mirror of
https://github.com/webxoss/webxoss-core.git
synced 2025-02-22 21:23:14 +01:00
Fix WX10-031
This commit is contained in:
parent
df3ff4af78
commit
ece12a0952
1 changed files with 2 additions and 3 deletions
|
@ -77037,11 +77037,10 @@ var CardInfo = {
|
|||
actionAsyn: function (targets) {
|
||||
var targetA = targets[0];
|
||||
var targetB = targets[1];
|
||||
if (targetA && !inArr(targetA,this.player.opponent.signis)) return;
|
||||
return Callback.immediately().callback(this,function () {
|
||||
if (!inArr(targetA,this.player.opponent.signis)) return;
|
||||
return targetA.bounceAsyn();
|
||||
if (targetA) return targetA.bounceAsyn();
|
||||
}).callback(this,function () {
|
||||
if (targetA && !inArr(targetA,this.player.opponent.signis)) return;
|
||||
if (!inArr(targetB,this.player.opponent.signis)) return;
|
||||
return targetB.banishAsyn();
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue