From 9f3c2ca7a833182355cdce2381baa990b8f275f8 Mon Sep 17 00:00:00 2001 From: blitzmann Date: Mon, 5 Feb 2018 22:34:25 -0500 Subject: [PATCH] Add stacking penalty to Fighter's MWD ability --- eos/effects/fighterabilitymicrowarpdrive.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eos/effects/fighterabilitymicrowarpdrive.py b/eos/effects/fighterabilitymicrowarpdrive.py index 01bea209a..6dfbae73a 100644 --- a/eos/effects/fighterabilitymicrowarpdrive.py +++ b/eos/effects/fighterabilitymicrowarpdrive.py @@ -14,7 +14,8 @@ runTime = "late" def handler(fit, module, context): - module.boostItemAttr("maxVelocity", module.getModifiedItemAttr("fighterAbilityMicroWarpDriveSpeedBonus")) + module.boostItemAttr("maxVelocity", module.getModifiedItemAttr("fighterAbilityMicroWarpDriveSpeedBonus"), + stackingPenalties=True) module.boostItemAttr("signatureRadius", module.getModifiedItemAttr("fighterAbilityMicroWarpDriveSignatureRadiusBonus"), stackingPenalties=True)