fix WD18-018 1st effect not putting card to ener zone

This commit is contained in:
WEBXOSS 2017-03-01 00:53:13 +08:00
parent 6aeda485be
commit 59cba5625f

View file

@ -126722,7 +126722,9 @@ var CardInfo = {
var filter = function (card) {
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);
});
});
}
},{