From 67df84236b925b5e70f108098ef08947c9031f09 Mon Sep 17 00:00:00 2001 From: WEBXOSS Date: Thu, 14 Sep 2017 11:11:56 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix=20trap=20effect=20source?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Card.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Card.js b/Card.js index 7fe46f4..167d493 100644 --- a/Card.js +++ b/Card.js @@ -1848,10 +1848,10 @@ Card.prototype.handleTrapAsyn = function(event) { } }).callback(this,function () { if (!this.trap) return; - return this.game.blockAsyn(this,function () { + return this.game.blockAsyn(this,this,function () { this.player.onTrapTriggered.trigger(); return this.trap.actionAsyn.call(this,event); - }) + }); }).callback(this,function () { this.trash(); });