Fixed issue where object aliases were not being included in searches.

This commit is contained in:
Kelketek 2013-12-23 13:38:40 -06:00
parent 7b5128d0a9
commit 46a7e891d1
2 changed files with 5 additions and 5 deletions

View file

@ -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")()