Merge pull request #46 from Deardrops/fix/wx15-059

fix wx15-059
This commit is contained in:
webxoss 2017-05-11 14:32:50 +08:00 committed by GitHub
commit b839737f9b

View file

@ -110672,9 +110672,9 @@ var CardInfo = {
var cards = this.player.hands.filter(function (card) {
return card.hasClass('調理');
},this);
return this.player.selectOptionalAsyn('DISCARD',cards).callback(this,function (card) {
return this.player.selectOptionalAsyn('TARGET',cards).callback(this,function (card) {
if (!card) return;
card.trash();
card.moveTo(this.player.enerZone);
this.player.draw(1);
});
}