mirror of
https://github.com/evennia/evennia.git
synced 2026-03-21 23:36:30 +01:00
Fix wrong locktype in attribute all check. Resolve #2392.
This commit is contained in:
parent
6de53696fe
commit
bae45cc2a1
1 changed files with 1 additions and 1 deletions
|
|
@ -1224,7 +1224,7 @@ class AttributeHandler:
|
|||
return [
|
||||
attr
|
||||
for attr in attrs
|
||||
if attr.access(accessing_obj, self._attredit, default=default_access)
|
||||
if attr.access(accessing_obj, self._attrread, default=default_access)
|
||||
]
|
||||
else:
|
||||
return attrs
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue