mirror of
https://github.com/webxoss/webxoss-core.git
synced 2024-11-20 06:49:53 +01:00
🐛 fix WX16-025
This commit is contained in:
parent
b7ac6afd43
commit
0496f30231
1 changed files with 2 additions and 2 deletions
|
@ -115324,7 +115324,7 @@ var CardInfo = {
|
|||
var cards = this.player.hands.filter(function (card) {
|
||||
return (card.power < event.power) && card.canSummon();
|
||||
},this);
|
||||
return this.player.selectOptionalAsyn('SUMMON_SIGNI',function (card) {
|
||||
return this.player.selectOptionalAsyn('SUMMON_SIGNI',cards).callback(this,function (card) {
|
||||
if (!card) return;
|
||||
return card.summonAsyn();
|
||||
});
|
||||
|
@ -115344,7 +115344,7 @@ var CardInfo = {
|
|||
var cards = this.player.hands.filter(function (card) {
|
||||
return card.hasClass('怪異');
|
||||
},this);
|
||||
return cards.level >= 2;
|
||||
return cards.length >= 2;
|
||||
},
|
||||
costAsyn: function () {
|
||||
var cards = this.player.hands.filter(function (card) {
|
||||
|
|
Loading…
Reference in a new issue