Filter out placeholders

This commit is contained in:
DarkPhoenix
2022-02-19 01:14:11 +03:00
parent 0e0d820cb5
commit 209120a0dd

View File

@@ -598,6 +598,7 @@ def update_db():
for item in eos.db.gamedata_session.query(eos.gamedata.Item).filter(or_(
eos.gamedata.Item.name.like('%abyssal%'),
eos.gamedata.Item.name.like('%mutated%'),
eos.gamedata.Item.name.like('%_PLACEHOLDER%'),
# Drifter weapons are published for some reason
eos.gamedata.Item.name.in_(('Lux Kontos', 'Lux Xiphos'))
)).all():