mirror of
https://github.com/evennia/evennia.git
synced 2026-03-29 03:57:17 +02:00
Continued with weakref and lazyloading fixes.
This commit is contained in:
parent
dc2cce5f4f
commit
e11b242365
6 changed files with 225 additions and 216 deletions
|
|
@ -137,10 +137,10 @@ class ObjectDB(TypedObject):
|
|||
# handlers
|
||||
_SA(self, "cmdset", LazyLoadHandler(self, "cmdset", CmdSetHandler, True))
|
||||
_SA(self, "scripts", LazyLoadHandler(self, "scripts", ScriptHandler))
|
||||
_SA(self, "attributes", LazyLoadHandler(self, "attributes", AttributeHandler))
|
||||
_SA(self, "nicks", LazyLoadHandler(self, "nicks", NickHandler))
|
||||
_SA(self, "tags", LazyLoadHandler(self, "tags", TagHandler))
|
||||
_SA(self, "aliases", LazyLoadHandler(self, "aliases", AliasHandler))
|
||||
#_SA(self, "attributes", LazyLoadHandler(self, "attributes", AttributeHandler))
|
||||
#_SA(self, "tags", LazyLoadHandler(self, "tags", TagHandler))
|
||||
#_SA(self, "aliases", LazyLoadHandler(self, "aliases", AliasHandler))
|
||||
# make sure to sync the contents cache when initializing
|
||||
#_GA(self, "contents_update")()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue