From 0fb4f22ff1c7a8307586a7a4819d3f56f5962b2b Mon Sep 17 00:00:00 2001 From: WEBXOSS Date: Thu, 18 May 2017 14:59:17 +0800 Subject: [PATCH] fix missing effect source in trap --- Card.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Card.js b/Card.js index 856c463..fa17479 100644 --- a/Card.js +++ b/Card.js @@ -1676,7 +1676,9 @@ Card.prototype.handleTrapAsyn = function() { } }).callback(this,function () { if (!this.trap) return; - return this.trap.actionAsyn.call(this); + return this.game.blockAsyn(this,function () { + return this.trap.actionAsyn.call(this); + }) }).callback(this,function () { this.trash(); });