diff --git a/README.md b/README.md index f5c6457a5..d2830d71b 100644 --- a/README.md +++ b/README.md @@ -24,10 +24,8 @@ $ brew install Caskroom/cask/pyfa ### Linux Distro-specific Packages The following is a list of pyfa packages available for certain distributions. Please note that these packages are maintained by third-parties and are not evaluated by the pyfa developers. -* Debian/Ubuntu/derivatives: https://github.com/AdamMajer/Pyfa/releases * Arch: https://aur.archlinux.org/packages/pyfa/ -* openSUSE: https://build.opensuse.org/package/show/home:rmk2/pyfa -* FreeBSD: http://www.freshports.org/games/pyfa/ (see [#484](https://github.com/pyfa-org/Pyfa/issues/484) for instructions) +* Gentoo: https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay ### Dependencies If you wish to help with development or simply need to run pyfa through a Python interpreter, the following software is required: diff --git a/service/character.py b/service/character.py index 37103a448..b5e7d1e6e 100644 --- a/service/character.py +++ b/service/character.py @@ -429,7 +429,7 @@ class Character(object): def checkRequirements(self, fit): # toCheck = [] reqs = {} - for thing in itertools.chain(fit.modules, fit.drones, fit.fighters, (fit.ship,)): + for thing in itertools.chain(fit.modules, fit.drones, fit.fighters, (fit.ship,), fit.appliedImplants, fit.boosters): if isinstance(thing, es_Module) and thing.slot == es_Slot.RIG: continue for attr in ("item", "charge"):