Update various instances where Category name wasn't displaying the translated version (in context menus)

This commit is contained in:
blitzmann
2020-06-25 20:32:49 -04:00
parent c7ec87b979
commit 42706f35c6
9 changed files with 11 additions and 11 deletions

View File

@@ -506,8 +506,8 @@ class Item(EqBase):
return False
def __repr__(self):
return "Item(ID={}, name={}) at {}".format(
self.ID, self.name, hex(id(self))
return "Item(ID={}, name={}, display={}) at {}".format(
self.ID, self.typeName, self.name, hex(id(self))
)