1
0
Fork 1
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:
WEBXOSS 2016-11-13 14:01:48 +08:00
parent adf4b68b5c
commit 59f3053c87

View file

@ -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,