Add Citadel to ship root

This commit is contained in:
blitzmann
2016-05-15 18:42:01 -04:00
parent 9891aecf19
commit 523f7793b5

View File

@@ -663,8 +663,10 @@ class Market():
return root return root
def getShipRoot(self): def getShipRoot(self):
cat = self.getCategory("Ship") cat1 = self.getCategory("Ship")
root = set(self.getGroupsByCategory(cat)) cat2 = self.getCategory("Structure")
root = set(self.getGroupsByCategory(cat1) | self.getGroupsByCategory(cat2))
return root return root
def getShipList(self, grpid): def getShipList(self, grpid):