forked from mirrors/webxoss-core
fix card.summonAsyn() with rise
This commit is contained in:
parent
96f180deb3
commit
0e857dd63c
1 changed files with 1 additions and 1 deletions
2
Card.js
2
Card.js
|
@ -1374,7 +1374,7 @@ Card.prototype.summonAsyn = function (optional,dontTriggerStartUp,down) {
|
||||||
}
|
}
|
||||||
}).callback(this,function (card) {
|
}).callback(this,function (card) {
|
||||||
if (!card) return;
|
if (!card) return;
|
||||||
return this.player.selectSummonZoneAsyn().callback(this,function (zone) {
|
return this.player.selectSummonZoneAsyn(false,this.rise).callback(this,function (zone) {
|
||||||
card.moveTo(zone,{
|
card.moveTo(zone,{
|
||||||
dontTriggerStartUp: dontTriggerStartUp,
|
dontTriggerStartUp: dontTriggerStartUp,
|
||||||
up: !down
|
up: !down
|
||||||
|
|
Loading…
Reference in a new issue