From fb1c5a760f868ea14788d6c4ce156483b867713a Mon Sep 17 00:00:00 2001 From: blitzmann Date: Sun, 1 May 2016 16:18:27 -0400 Subject: [PATCH] Fix projected remote cap transfers (#585) --- eos/effects/remoteenergytransferfalloff.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eos/effects/remoteenergytransferfalloff.py b/eos/effects/remoteenergytransferfalloff.py index abdece325..ddb6fab9a 100644 --- a/eos/effects/remoteenergytransferfalloff.py +++ b/eos/effects/remoteenergytransferfalloff.py @@ -5,6 +5,6 @@ type = "projected", "active" def handler(fit, module, context): if "projected" in context: - amount = module.getModifiedItemAttr("maxRange") + amount = module.getModifiedItemAttr("powerTransferAmount") duration = module.getModifiedItemAttr("duration") fit.addDrain(duration, -amount, 0)