Skip to content

Commit

Permalink
Gonna assume crafted gems can't be crushed
Browse files Browse the repository at this point in the history
Might be a thing for TWW, dunno, but for now I assume it's a mixup in the dbc
  • Loading branch information
p3lim committed Jul 6, 2024
1 parent 84f3bef commit a210fc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/crushable.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

# iterate through ItemSparse for crushable items and add their names to the dict
for row in itemSparse:
if row.ID in items:
if row.ID in items and row.Gem_properties == 0:
items[row.ID]['name'] = row.Display_lang

# print data file structure
Expand Down

0 comments on commit a210fc6

Please sign in to comment.