mirror of
https://github.com/webxoss/webxoss-core.git
synced 2025-01-18 19:56:02 +01:00
Fix WX12-002 Action
This commit is contained in:
parent
adf4b68b5c
commit
59f3053c87
1 changed files with 1 additions and 1 deletions
|
@ -102315,7 +102315,7 @@ var CardInfo = {
|
|||
costColorless: 1,
|
||||
actionAsyn: function () {
|
||||
var cards = this.game.cards.filter(function (card) {
|
||||
return (card.player === this.player) && (card.type === 'SIGNI') || (card.type === 'SPELL');
|
||||
return (card.player === this.player) && ((card.type === 'SIGNI') || (card.type === 'SPELL'));
|
||||
},this);
|
||||
this.game.addConstEffect({
|
||||
source: this,
|
||||
|
|
Loading…
Reference in a new issue