mirror of
https://github.com/webxoss/webxoss-core.git
synced 2024-11-20 06:49:53 +01:00
fix WX15-118
This commit is contained in:
parent
07e8486f8c
commit
9bb9d9ad84
1 changed files with 2 additions and 2 deletions
|
@ -108993,14 +108993,14 @@ var CardInfo = {
|
|||
actionAsyn: function () {
|
||||
this.game.frameStart();
|
||||
this.player.opponent.signis.forEach(function (signi) {
|
||||
this.game.tillTurnEndAdd(signi,'power',-2000);
|
||||
this.game.tillTurnEndAdd(this,signi,'power',-2000);
|
||||
},this);
|
||||
this.game.frameEnd();
|
||||
|
||||
this.game.frameStart();
|
||||
this.player.opponent.signis.forEach(function (signi) {
|
||||
if (!signi.isInfected()) return;
|
||||
this.game.tillTurnEndAdd(signi,'power',-3000);
|
||||
this.game.tillTurnEndAdd(this,signi,'power',-3000);
|
||||
},this);
|
||||
this.game.frameEnd();
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue