remove _ and - from pedestal hint texts

This commit is contained in:
Fabian Dill 2021-06-14 02:23:41 +02:00
parent 434d8e0977
commit 2f3296bada
1 changed files with 1 additions and 1 deletions

View File

@ -1241,7 +1241,7 @@ class Item():
@property
def pedestal_hint_text(self):
return getattr(self, "_pedestal_hint_text", self.name)
return getattr(self, "_pedestal_hint_text", self.name.replace("_", " ").replace("-", " "))
def __eq__(self, other):
return self.name == other.name and self.player == other.player