Skip to content

Commit b3c1d7b

Browse files
committed
Do not unpublish abyssal ore processing
1 parent 17721f1 commit b3c1d7b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

db_update.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -607,9 +607,9 @@ def processImplantSets(eveTypesData):
607607
# Drifter weapons are published for some reason
608608
eos.gamedata.Item.name.in_(('Lux Kontos', 'Lux Xiphos', 'Lux Ballistra', 'Lux Kopis'))
609609
)).all():
610-
if 'Asteroid Mining Crystal' in item.name:
610+
if item.name in ('Abyssal Ore Processing', 'Mutated Drone Specialization'):
611611
continue
612-
if 'Mutated Drone Specialization' in item.name:
612+
if 'Asteroid Mining Crystal' in item.name:
613613
continue
614614
item.published = False
615615

0 commit comments

Comments
 (0)