From 341950cb425b3b07d204e725cb839c34f2987352 Mon Sep 17 00:00:00 2001 From: DarkPhoenix Date: Mon, 25 Oct 2021 01:41:41 +0300 Subject: [PATCH] Add renames for quafe classic --- eos/effects.py | 2 +- service/conversions/releaseOct2021.py | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 service/conversions/releaseOct2021.py diff --git a/eos/effects.py b/eos/effects.py index f9eadfd3c..6754cfea7 100644 --- a/eos/effects.py +++ b/eos/effects.py @@ -1193,7 +1193,7 @@ class Effect395(BaseEffect): @staticmethod def handler(fit, container, context, projectionRange, **kwargs): level = container.level if 'skill' in context else 1 - penalties = 'skill' not in context and 'implant' not in context + penalties = 'skill' not in context and 'implant' not in context and 'booster' not in context fit.ship.boostItemAttr('agility', container.getModifiedItemAttr('agilityBonus') * level, stackingPenalties=penalties, **kwargs) diff --git a/service/conversions/releaseOct2021.py b/service/conversions/releaseOct2021.py new file mode 100644 index 000000000..bec3a0ced --- /dev/null +++ b/service/conversions/releaseOct2021.py @@ -0,0 +1,8 @@ +""" +Conversion pack for October 2021 release +""" + +CONVERSIONS = { + # Renamed items + "Quafe Zero": "Quafe Zero Classic", +}