forked from mirrors/webxoss-core
fix WD18-018 1st effect not putting card to ener zone
This commit is contained in:
parent
6aeda485be
commit
59cba5625f
1 changed files with 3 additions and 1 deletions
|
@ -126722,7 +126722,9 @@ var CardInfo = {
|
||||||
var filter = function (card) {
|
var filter = function (card) {
|
||||||
return card.hasClass('調理');
|
return card.hasClass('調理');
|
||||||
};
|
};
|
||||||
return this.player.seekAsyn(filter,1);
|
return this.player.searchAsyn(filter,1,0,true).callback(this,function (cards) {
|
||||||
|
this.game.moveCards(cards,this.player.enerZone);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
},{
|
},{
|
||||||
|
|
Loading…
Reference in a new issue