Add new warfareBuffID, and fix issue with going to effect file in debug

This commit is contained in:
blitzmann
2018-05-20 14:10:37 -04:00
parent bc23417eae
commit afd16e1afd
4 changed files with 14 additions and 6 deletions

View File

@@ -213,8 +213,13 @@ def main(db, json_path):
if (row["published"]
or row['groupID'] == 1306 # group Ship Modifiers, for items like tactical t3 ship modes
or row['typeName'].startswith('Civilian') # Civilian weapons
or row['typeID'] in (41549, 41548, 41551,41550) # Micro Bombs (Fighters)
or row['groupID'] in (1882, 1975, 1971) # Abysmal weather (environment)
or row['typeID'] in (41549, 41548, 41551, 41550) # Micro Bombs (Fighters)
or row['groupID'] in (
1882,
1975,
1971,
1983 # the "container" for the abysmal environments
) # Abysmal weather (environment)
):
eveTypes.add(row["typeID"])