From 70969cc9fb0e34325c7818bdf30b30d69f9f0b9a Mon Sep 17 00:00:00 2001 From: DarkPhoenix Date: Wed, 9 Sep 2020 13:56:06 +0300 Subject: [PATCH] Fix structure ewar skill not affecting ECM batteries --- eos/effects.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eos/effects.py b/eos/effects.py index 9ff4fe4b7..d9f646009 100644 --- a/eos/effects.py +++ b/eos/effects.py @@ -26907,7 +26907,7 @@ class Effect6400(BaseEffect): @staticmethod def handler(fit, src, context, projectionRange, **kwargs): - groups = ('Structure Warp Scrambler', 'Structure Disruption Battery', 'Structure Stasis Webifier') + groups = ('Structure Warp Scrambler', 'Structure ECM Battery', 'Structure Stasis Webifier') fit.modules.filteredItemBoost(lambda mod: mod.item.group.name in groups, 'capacitorNeed', src.getModifiedItemAttr('capNeedBonus'), skill='Structure Electronic Systems', **kwargs)