mirror of
https://github.com/evennia/evennia.git
synced 2026-03-25 17:26:32 +01:00
Merged the dev branch (many-chars-per-player) and made some more error checking in the migrations.
This commit is contained in:
parent
4854661889
commit
c843f15d42
2 changed files with 5 additions and 1 deletions
|
|
@ -681,6 +681,9 @@ class TypedObject(SharedMemoryModel):
|
|||
_SA(self, "_cached_typeclass", typeclass)
|
||||
try:
|
||||
typeclass.at_init()
|
||||
except AttributeError:
|
||||
logger.log_trace("\n%s: Error initializing typeclass %s. Using default." % (self, tpath))
|
||||
break
|
||||
except Exception:
|
||||
logger.log_trace()
|
||||
return typeclass
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue