mirror of
https://github.com/webxoss/webxoss-core.git
synced 2025-04-06 19:00:59 +02: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,
|
costColorless: 1,
|
||||||
actionAsyn: function () {
|
actionAsyn: function () {
|
||||||
var cards = this.game.cards.filter(function (card) {
|
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);
|
||||||
this.game.addConstEffect({
|
this.game.addConstEffect({
|
||||||
source: this,
|
source: this,
|
||||||
|
|
Loading…
Reference in a new issue