Add structure rigs

This commit is contained in:
blitzmann
2016-07-05 00:21:08 -04:00
parent 016854a292
commit c3983a26c5
3 changed files with 7 additions and 4 deletions

BIN
imgs/icons/127_5.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 794 B

View File

@@ -39,7 +39,7 @@ ITEM_CATEGORIES = (
18, # Drone 18, # Drone
20, # Implant 20, # Implant
32, # Subsystem 32, # Subsystem
66 # Structure Module 66, # Structure Module
) )
MARKET_ROOTS = { MARKET_ROOTS = {
@@ -50,7 +50,8 @@ MARKET_ROOTS = {
1112, # Subsystems 1112, # Subsystems
24, # Implants & Boosters 24, # Implants & Boosters
404, # Deployables 404, # Deployables
2202 # Structure Equipment 2202, # Structure Equipment
2203 # Structure Modifications (Rigs)
} }
# Add children to market group list # Add children to market group list

View File

@@ -331,7 +331,7 @@ class Market():
("faction", frozenset((4, 3))), ("faction", frozenset((4, 3))),
("complex", frozenset((6,))), ("complex", frozenset((6,))),
("officer", frozenset((5,)))]) ("officer", frozenset((5,)))])
self.SEARCH_CATEGORIES = ("Drone", "Module", "Subsystem", "Charge", "Implant", "Deployable", "Fighter", "Structure") self.SEARCH_CATEGORIES = ("Drone", "Module", "Subsystem", "Charge", "Implant", "Deployable", "Fighter", "Structure", "Structure Module")
self.SEARCH_GROUPS = ("Ice Product",) self.SEARCH_GROUPS = ("Ice Product",)
self.ROOT_MARKET_GROUPS = (9, # Modules self.ROOT_MARKET_GROUPS = (9, # Modules
1111, # Rigs 1111, # Rigs
@@ -340,7 +340,9 @@ class Market():
1112, # Subsystems 1112, # Subsystems
24, # Implants & Boosters 24, # Implants & Boosters
404, # Deployables 404, # Deployables
2202) # Structure Equipment 2202, # Structure Equipment
2203 # Structure Modifications
)
# Tell other threads that Market is at their service # Tell other threads that Market is at their service
mktRdy.set() mktRdy.set()