Skip to content

Commit

Permalink
Fix 2h scythe detection for importers (d4lfteam#289)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisoro authored Jun 14, 2024
1 parent bd154a9 commit 4beaeb1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "5.5.6"
__version__ = "5.5.7"
4 changes: 2 additions & 2 deletions src/gui/importer/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ def fix_weapon_type(input_str: str) -> ItemType | None:
return ItemType.Axe
if "2h axe" in input_str:
return ItemType.Axe2H
if "scythe" in input_str:
return ItemType.Scythe
if "2h scythe" in input_str:
return ItemType.Scythe2H
if "scythe" in input_str:
return ItemType.Scythe
if "crossbow" in input_str:
return ItemType.Crossbow2H
if "wand" in input_str:
Expand Down

0 comments on commit 4beaeb1

Please sign in to comment.