remove _ and - from item hint texts

This commit is contained in:
Fabian Dill 2021-06-14 02:20:13 +02:00
parent 0a89eaaf62
commit 434d8e0977
1 changed files with 1 additions and 1 deletions

View File

@ -1237,7 +1237,7 @@ class Item():
@property
def hint_text(self):
return getattr(self, "_hint_text", self.name)
return getattr(self, "_hint_text", self.name.replace("_", " ").replace("-", " "))
@property
def pedestal_hint_text(self):