diff --git a/eos/effects/energyneutralizerfalloff.py b/eos/effects/energyneutralizerfalloff.py index 402f20333f..6bd17c18e4 100644 --- a/eos/effects/energyneutralizerfalloff.py +++ b/eos/effects/energyneutralizerfalloff.py @@ -8,7 +8,6 @@ def handler(fit, container, context): if "projected" in context and ((hasattr(container, "state") \ and container.state >= State.ACTIVE) or hasattr(container, "amountActive")): - multiplier = container.amountActive if hasattr(container, "amountActive") else 1 amount = container.getModifiedItemAttr("energyDestabilizationAmount") time = container.getModifiedItemAttr("duration") - fit.addDrain(time, amount * multiplier, 0) + fit.addDrain(time, amount, 0)