From 92c9e1afc3f31e3624fe23dcca3b44f7a21f6639 Mon Sep 17 00:00:00 2001 From: DarkPhoenix Date: Wed, 27 Aug 2014 00:13:59 +0400 Subject: [PATCH] Fix black hole missile velocity effect --- eos/effects/systemmissilevelocity.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eos/effects/systemmissilevelocity.py b/eos/effects/systemmissilevelocity.py index af1cc379b..858bc26cd 100644 --- a/eos/effects/systemmissilevelocity.py +++ b/eos/effects/systemmissilevelocity.py @@ -3,5 +3,5 @@ runTime = "early" type = ("projected", "offline") def handler(fit, beacon, context): - fit.modules.filteredChargeBoost(lambda mod: mod.charge.requiresSkill("Missile Launcher Operation"), - "maxVelocity", beacon.getModifiedItemAttr("missileVelocityMultiplier")) + fit.modules.filteredChargeMultiply(lambda mod: mod.charge.requiresSkill("Missile Launcher Operation"), + "maxVelocity", beacon.getModifiedItemAttr("missileVelocityMultiplier"))