From 0648feaa7b1e83fad641fcfd0c008eb66320ddfc Mon Sep 17 00:00:00 2001 From: blitzmann Date: Thu, 15 Feb 2018 20:07:57 -0500 Subject: [PATCH] Handle a couple of group renamings --- eos/effects/structureballisticcontrolsystem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eos/effects/structureballisticcontrolsystem.py b/eos/effects/structureballisticcontrolsystem.py index e075af277..8a167b6be 100644 --- a/eos/effects/structureballisticcontrolsystem.py +++ b/eos/effects/structureballisticcontrolsystem.py @@ -11,7 +11,7 @@ def handler(fit, module, context): module.getModifiedItemAttr("missileDamageMultiplierBonus"), stackingPenalties=True) - launcherGroups = ("Structure AXL Missile Launcher", "Structure ASML Missile Launcher") + launcherGroups = ("Structure XL Missile Launcher", "Structure Multirole Missile Launcher") fit.modules.filteredItemMultiply(lambda mod: mod.item.group.name in launcherGroups, "speed", module.getModifiedItemAttr("speedMultiplier"), stackingPenalties=True)