Skip to content

Commit

Permalink
fix: Fix wrong circle icon
Browse files Browse the repository at this point in the history
  • Loading branch information
seriaati committed Feb 2, 2024
1 parent 2836fcb commit 3e71f48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion enka/models/icon.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def circle(self) -> str:
The circle (round) icon of the character.
e.g. https://enka.network/ui/UI_AvatarIcon_Ambor_Circle.png
"""
return self._side_icon.replace("Side_", "") + "_Circle"
return self._side_icon.replace("Side_", "").replace(".png", "_Circle.png")

@property
def gacha(self) -> str:
Expand Down

0 comments on commit 3e71f48

Please sign in to comment.