fix missing effect source in trap

This commit is contained in:
WEBXOSS 2017-05-18 14:59:17 +08:00
parent 36b9ad8697
commit 0fb4f22ff1

View file

@ -1676,7 +1676,9 @@ Card.prototype.handleTrapAsyn = function() {
} }
}).callback(this,function () { }).callback(this,function () {
if (!this.trap) return; 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 () { }).callback(this,function () {
this.trash(); this.trash();
}); });