Add citadel fittings to market browser, and get rid of some initial errors

This commit is contained in:
blitzmann
2016-05-15 18:58:47 -04:00
parent 523f7793b5
commit 7cf0a35a7a
4 changed files with 9 additions and 4 deletions

View File

@@ -329,14 +329,15 @@ class Market():
("faction", frozenset((4, 3))),
("complex", frozenset((6,))),
("officer", frozenset((5,)))])
self.SEARCH_CATEGORIES = ("Drone", "Module", "Subsystem", "Charge", "Implant", "Deployable", "Fighter")
self.SEARCH_CATEGORIES = ("Drone", "Module", "Subsystem", "Charge", "Implant", "Deployable", "Fighter", "Structure")
self.ROOT_MARKET_GROUPS = (9, # Modules
1111, # Rigs
157, # Drones
11, # Ammo
1112, # Subsystems
24, # Implants & Boosters
404) # Deployables
404, # Deployables
2202) # Structure Equipment
# Tell other threads that Market is at their service
mktRdy.set()