fix : do not activate automatically per effects
release-tag / release-image (push) Successful in 40s

This commit is contained in:
2024-12-23 14:06:08 +01:00
parent ad3d660ee6
commit 546909f4a6
+1 -1
View File
@@ -19,7 +19,7 @@ export function isAutoActivable(effect: Effect) {
if ( if (
!effect.mutex && !effect.mutex &&
(!effect.condition || (!effect.condition ||
effect.condition.effectId == EffectType.CHAMPION_ACTION) ( effect.condition.effectId == EffectType.CHAMPION_ACTION && !effect.per))
) { ) {
return true; return true;
} }