From cc529d349991e47c39ccbe07feac9949faaf1acb Mon Sep 17 00:00:00 2001 From: blitzmann Date: Wed, 6 Jun 2018 00:25:45 -0400 Subject: [PATCH] Penalized drone velocity rigs (#1630) --- eos/effects/dronemaxvelocitybonus.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eos/effects/dronemaxvelocitybonus.py b/eos/effects/dronemaxvelocitybonus.py index 938b34fa0..e3fc1ba6e 100644 --- a/eos/effects/dronemaxvelocitybonus.py +++ b/eos/effects/dronemaxvelocitybonus.py @@ -8,4 +8,4 @@ type = "passive" def handler(fit, container, context): level = container.level if "skill" in context else 1 fit.drones.filteredItemBoost(lambda drone: drone.item.requiresSkill("Drones"), - "maxVelocity", container.getModifiedItemAttr("droneMaxVelocityBonus") * level) + "maxVelocity", container.getModifiedItemAttr("droneMaxVelocityBonus") * level, stackingPenalties=True)