From c1179ddb404582b436c8bd88329d858da13c46b1 Mon Sep 17 00:00:00 2001 From: blitzman Date: Tue, 30 Aug 2016 23:45:21 -0400 Subject: [PATCH] Fix issue with fighter bomber charges causing skill requirement warnings --- service/character.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/service/character.py b/service/character.py index 92e2c2e57..4ed84959d 100644 --- a/service/character.py +++ b/service/character.py @@ -366,6 +366,10 @@ class Character(object): if isinstance(thing, eos.types.Module) and thing.slot == eos.types.Slot.RIG: continue for attr in ("item", "charge"): + if attr == "charge" and isinstance(thing, eos.types.Fighter): + # Fighter Bombers are automatically charged with micro bombs. + # These have skill requirements attached, but aren't used in EVE. + continue subThing = getattr(thing, attr, None) subReqs = {} if subThing is not None: