mirror of
https://github.com/evennia/evennia.git
synced 2026-03-22 07:46:30 +01:00
Small bugfixes in the wake of the cmdset changes. Resolves issue 148.
This commit is contained in:
parent
9d80284504
commit
75956de7d1
3 changed files with 8 additions and 3 deletions
|
|
@ -612,7 +612,7 @@ class TypedObject(SharedMemoryModel):
|
|||
errstring += "\nThis seems to be just the path to a module. You need"
|
||||
errstring += " to specify the actual typeclass name inside the module too."
|
||||
errstring += "\n Typeclass '%s' failed to load." % path
|
||||
defpath = object.__getattribute__(self, default_typeclass_path)
|
||||
defpath = object.__getattribute__(self, "default_typeclass_path")
|
||||
errstring += " Using Default class '%s'." % defpath
|
||||
self.db_typeclass_path = defpath
|
||||
self.save()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue