mirror of
https://github.com/evennia/evennia.git
synced 2026-03-27 10:16:32 +01:00
Fixed a recursive error with the ndbhandler.all.
This commit is contained in:
parent
7f8d421039
commit
fb8db4ead0
1 changed files with 1 additions and 1 deletions
|
|
@ -124,7 +124,7 @@ class DbHolder(object):
|
|||
attr = _GA(self, _GA(self, 'name')).get("all")
|
||||
if attr:
|
||||
return attr
|
||||
return self.all
|
||||
return _GA(self, "all")
|
||||
return _GA(self, _GA(self, 'name')).get(attrname)
|
||||
|
||||
def __setattr__(self, attrname, value):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue