mirror of
https://github.com/evennia/evennia.git
synced 2026-03-30 12:37:16 +02:00
Fixed the rest of @examine. Attribute checks should work now.
This commit is contained in:
parent
4fd99201b0
commit
3adc908ca2
1 changed files with 1 additions and 1 deletions
|
|
@ -2067,7 +2067,7 @@ class CmdExamine(ObjManipCommand):
|
|||
"""
|
||||
|
||||
if attrname:
|
||||
db_attr = [(attrname, obj.attributes.get(attrname))]
|
||||
db_attr = [(attrname, obj.attributes.get(attrname), None)]
|
||||
try:
|
||||
ndb_attr = [(attrname, object.__getattribute__(obj.ndb, attrname))]
|
||||
except Exception:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue