forked from mirrors/webxoss-core
🐛 fix summon SIGNI
This commit is contained in:
parent
34a66f0b94
commit
f2125cdd14
1 changed files with 1 additions and 1 deletions
2
Card.js
2
Card.js
|
@ -1590,7 +1590,7 @@ Card.prototype.handleSummonAsyn = function(zone,arg) {
|
|||
}).callback(this,function (afterSummonAsyn) {
|
||||
arg = Object.create(arg);
|
||||
arg.isSummon = true;
|
||||
arg.up = !!arg.down;
|
||||
arg.up = !arg.down;
|
||||
var event = this.moveTo(zone,arg);
|
||||
if (isFunc(afterSummonAsyn)) {
|
||||
return afterSummonAsyn.call(this,event).callback(this,function () {
|
||||
|
|
Loading…
Reference in a new issue