From c3983a26c5ba0c8d0d7409016dbd50838ca4e19d Mon Sep 17 00:00:00 2001 From: blitzmann Date: Tue, 5 Jul 2016 00:21:08 -0400 Subject: [PATCH] Add structure rigs --- imgs/icons/127_5.png | Bin 0 -> 794 bytes scripts/icons_update.py | 5 +++-- service/market.py | 6 ++++-- 3 files changed, 7 insertions(+), 4 deletions(-) create mode 100644 imgs/icons/127_5.png diff --git a/imgs/icons/127_5.png b/imgs/icons/127_5.png new file mode 100644 index 0000000000000000000000000000000000000000..c80c6f85f718e6b3952095464a9b8ad65a84cd8e GIT binary patch literal 794 zcmV+#1LgdQP)Y}z5XXPdvoCRM*QpcBO=7o68XY@tC8Tle)b@IJv(N56!vQy{I3VUW|C#xZG@2ibLPQk*BbJty^sBiV z4Qr*86_EmP`?8uO5JhBJhH=OA+SYF;@87z$)@rq!<>loZK#7P_N{NUR!!UZVv$b>k z@zF7TC8$DyC@cMJ%R0&WF;fFK6t^|?mp@G3=((A z9nb3}Nd=n&Q~_TD#NCeGKW)>F4St>ypLakqu2ice7da*j$>Jf7KgMZ4@WLoUYdr?I z?mssOc)EWe7hy=zGng=E?Z=wx3Rv)u#fpLL{AtI1enK^U*(1y@VK_pP;70OJCD_weCiJPfFfR}k&CbrfZ! z23PqMWe5i+_}7|JA9E_&=u)D!qqVlyT2X)otmk=muU2bcRcp1NI#nO|zUOGAL{MaD zLS~FkOz?(tX+Y YH|rpcf~&OaYXATM07*qoM6N<$f?H0INdN!< literal 0 HcmV?d00001 diff --git a/scripts/icons_update.py b/scripts/icons_update.py index a466cf558..261ee7e89 100644 --- a/scripts/icons_update.py +++ b/scripts/icons_update.py @@ -39,7 +39,7 @@ ITEM_CATEGORIES = ( 18, # Drone 20, # Implant 32, # Subsystem - 66 # Structure Module + 66, # Structure Module ) MARKET_ROOTS = { @@ -50,7 +50,8 @@ MARKET_ROOTS = { 1112, # Subsystems 24, # Implants & Boosters 404, # Deployables - 2202 # Structure Equipment + 2202, # Structure Equipment + 2203 # Structure Modifications (Rigs) } # Add children to market group list diff --git a/service/market.py b/service/market.py index 73f6ab770..1b9bb870b 100644 --- a/service/market.py +++ b/service/market.py @@ -331,7 +331,7 @@ class Market(): ("faction", frozenset((4, 3))), ("complex", frozenset((6,))), ("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.ROOT_MARKET_GROUPS = (9, # Modules 1111, # Rigs @@ -340,7 +340,9 @@ class Market(): 1112, # Subsystems 24, # Implants & Boosters 404, # Deployables - 2202) # Structure Equipment + 2202, # Structure Equipment + 2203 # Structure Modifications + ) # Tell other threads that Market is at their service mktRdy.set()