diff --git a/evennia/help/filehelp.py b/evennia/help/filehelp.py index 4c9cf3d9f1..2af67c3f17 100644 --- a/evennia/help/filehelp.py +++ b/evennia/help/filehelp.py @@ -120,6 +120,9 @@ class FileHelpEntry: def __repr__(self): return f"" + def __hash__(self): + return hash((self.key, self.help_category, self.lock_storage)) + @lazy_property def locks(self): return LockHandler(self)