Skip to content

Commit 21efd6d

Browse files
committed
CCP added faction 200mm plates back to the game
1 parent ea288a6 commit 21efd6d

2 files changed

Lines changed: 2 additions & 9 deletions

File tree

scripts/jsonToSql.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -169,13 +169,9 @@ def convertTypes(typesData):
169169
data[jsonName] = tableData
170170

171171
# Set with typeIDs which we will have in our database
172-
eveTypes = {
173172
# Sometimes CCP unpublishes some items we want to have published, we
174-
# can do it here
175-
31906, # Federation Navy 200mm Steel Plates
176-
31904, # Imperial Navy 200mm Steel Plates
177-
28782, # Syndicate 200mm Steel Plates
178-
}
173+
# can do it here - just add them to initial set
174+
eveTypes = set()
179175
for row in data["evetypes"]:
180176
# 1306 - group Ship Modifiers, for items like tactical t3 ship modes
181177
if (row["published"] or row['groupID'] == 1306):

service/market.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -218,9 +218,6 @@ def __init__(self):
218218
"Mobile Decoy Unit": False, # Seems to be left over test mod for deployables
219219
"Tournament Micro Jump Unit": False, # Normally seen only on tournament arenas
220220
"Council Diplomatic Shuttle": False, # CSM X celebration
221-
"Federation Navy 200mm Steel Plates": True, # Accidentally unpublished by CCP
222-
"Imperial Navy 200mm Steel Plates": True, # Accidentally unpublished by CCP
223-
"Syndicate 200mm Steel Plates": True, # Accidentally unpublished by CCP
224221
}
225222

226223
# do not publish ships that we convert

0 commit comments

Comments
 (0)