mirror of
https://github.com/evennia/evennia.git
synced 2026-04-04 15:07:16 +02:00
Fixed issue where object aliases were not being included in searches.
This commit is contained in:
parent
7b5128d0a9
commit
46a7e891d1
2 changed files with 5 additions and 5 deletions
|
|
@ -141,8 +141,8 @@ class ObjectDB(TypedObject):
|
|||
_GA(self, "cmdset").update(init_mode=True)
|
||||
_SA(self, "scripts", ScriptHandler(self))
|
||||
_SA(self, "attributes", AttributeHandler(self))
|
||||
_SA(self, "tags", TagHandler(self, category_prefix="object_"))
|
||||
_SA(self, "aliases", AliasHandler(self, category_prefix="object_"))
|
||||
_SA(self, "tags", TagHandler(self, category_prefix="object"))
|
||||
_SA(self, "aliases", AliasHandler(self, category_prefix="object"))
|
||||
_SA(self, "nicks", NickHandler(self))
|
||||
# make sure to sync the contents cache when initializing
|
||||
#_GA(self, "contents_update")()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue