From b75c86d251b3f0b90fb92340f6b1c6ea7828375d Mon Sep 17 00:00:00 2001 From: blitzmann Date: Thu, 15 May 2014 11:44:09 -0400 Subject: [PATCH] Ignore Orbital ammo in ammo picker - see #71 --- gui/builtinContextMenus/moduleAmmoPicker.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gui/builtinContextMenus/moduleAmmoPicker.py b/gui/builtinContextMenus/moduleAmmoPicker.py index 7f11207cc..c19c9d7ab 100644 --- a/gui/builtinContextMenus/moduleAmmoPicker.py +++ b/gui/builtinContextMenus/moduleAmmoPicker.py @@ -135,8 +135,10 @@ class ModuleAmmoPicker(ContextMenu): for charge in self.charges: # fix issue 71 - will probably have to change if CCP adds more Orbital ammo if "Orbital" in charge.name: - item = self.addCharge(m, charge) - items.append(item) + # uncomment if we ever want to include Oribital ammo in ammo picker - see issue #71 + # This allows us to hide the ammo, but it's still loadable from the market + #item = self.addCharge(m, charge) + #items.append(item) continue currBase = charge.name.rsplit()[-2:] currRange = charge.getAttribute("weaponRangeMultiplier")