From 3adc908ca2979cc9ec62eac17188e4d6a471bcdc Mon Sep 17 00:00:00 2001 From: Andrew Bastien Date: Wed, 3 Apr 2019 02:53:19 -0400 Subject: [PATCH] Fixed the rest of @examine. Attribute checks should work now. --- evennia/commands/default/building.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/commands/default/building.py b/evennia/commands/default/building.py index 79baf84e77..ddde28510a 100644 --- a/evennia/commands/default/building.py +++ b/evennia/commands/default/building.py @@ -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: