forked from mirrors/webxoss-core
🐛 fix PR-366 2nd const
This commit is contained in:
parent
b1498931b1
commit
cc752c2efa
1 changed files with 1 additions and 1 deletions
|
@ -116847,9 +116847,9 @@ var CardInfo = {
|
|||
this.player.signis.forEach(function (signi) {
|
||||
if (signi === this) return;
|
||||
signi.constEffects.forEach(function (constEffect,idx) {
|
||||
if (!constEffect.wisdom) return;
|
||||
if (!constEffect.auto) return;
|
||||
if (!constEffect.effect) return;
|
||||
if (!constEffect.effect.wisdom) return;
|
||||
if (!constEffect.effect.checkCondition()) return;
|
||||
effects.push(constEffect.effect);
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue