diff --git a/scripts/jsonToSql.py b/scripts/jsonToSql.py index 033330223..d4de50755 100755 --- a/scripts/jsonToSql.py +++ b/scripts/jsonToSql.py @@ -169,13 +169,9 @@ def main(db, json_path): data[jsonName] = tableData # Set with typeIDs which we will have in our database - eveTypes = { # Sometimes CCP unpublishes some items we want to have published, we - # can do it here - 31906, # Federation Navy 200mm Steel Plates - 31904, # Imperial Navy 200mm Steel Plates - 28782, # Syndicate 200mm Steel Plates - } + # can do it here - just add them to initial set + eveTypes = set() for row in data["evetypes"]: # 1306 - group Ship Modifiers, for items like tactical t3 ship modes if (row["published"] or row['groupID'] == 1306): diff --git a/service/market.py b/service/market.py index 0ea234aaf..b4f3ef1b3 100644 --- a/service/market.py +++ b/service/market.py @@ -218,9 +218,6 @@ class Market(): "Mobile Decoy Unit": False, # Seems to be left over test mod for deployables "Tournament Micro Jump Unit": False, # Normally seen only on tournament arenas "Council Diplomatic Shuttle": False, # CSM X celebration - "Federation Navy 200mm Steel Plates": True, # Accidentally unpublished by CCP - "Imperial Navy 200mm Steel Plates": True, # Accidentally unpublished by CCP - "Syndicate 200mm Steel Plates": True, # Accidentally unpublished by CCP } # do not publish ships that we convert