From 2f3296badaff7e81e6d8de16adb439de7165ca92 Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Mon, 14 Jun 2021 02:23:41 +0200 Subject: [PATCH] remove _ and - from pedestal hint texts --- BaseClasses.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BaseClasses.py b/BaseClasses.py index 823262f2..59e16b44 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -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