From 9bb9d9ad84867378ff93754ab8561c4f564c653c Mon Sep 17 00:00:00 2001 From: WEBXOSS Date: Thu, 13 Apr 2017 00:16:30 +0800 Subject: [PATCH] fix WX15-118 --- CardInfo.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CardInfo.js b/CardInfo.js index 104df4e..3d394b7 100644 --- a/CardInfo.js +++ b/CardInfo.js @@ -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(); },