mirror of
https://github.com/webxoss/webxoss-core.git
synced 2025-02-23 13:43:09 +01:00
Fix WX14-045
This commit is contained in:
parent
385c83df05
commit
f2bfde3205
1 changed files with 1 additions and 1 deletions
|
@ -123650,7 +123650,7 @@ var CardInfo = {
|
||||||
if (text === 'ADD_TO_HAND') {
|
if (text === 'ADD_TO_HAND') {
|
||||||
return this.player.pickCardAsyn(filter);
|
return this.player.pickCardAsyn(filter);
|
||||||
} else {
|
} else {
|
||||||
cards = this.player.trashZone.cards.filter(function (card) {
|
var cards = this.player.trashZone.cards.filter(function (card) {
|
||||||
return filter(card) && card.canSummon();
|
return filter(card) && card.canSummon();
|
||||||
},this);
|
},this);
|
||||||
return this.player.selectOptionalAsyn('TARGET',cards).callback(this,function (card) {
|
return this.player.selectOptionalAsyn('TARGET',cards).callback(this,function (card) {
|
||||||
|
|
Loading…
Reference in a new issue