diff --git a/evennia/typeclasses/attributes.py b/evennia/typeclasses/attributes.py index 174b9ab056..419e0cd3d3 100644 --- a/evennia/typeclasses/attributes.py +++ b/evennia/typeclasses/attributes.py @@ -62,7 +62,7 @@ class IAttribute: return LockHandler(self) key = property(lambda self: self.db_key) - strvalue = property(lambda self: self.db_strvalue) + strvalue = property(lambda self: getattr(self, 'db_strvalue', None)) category = property(lambda self: self.db_category) model = property(lambda self: self.db_model) attrtype = property(lambda self: self.db_attrtype)