Made the evennia launcher pass through the management options in a better way. Also made the superuser creation more straightforward and handled flushed databases in a better way.

This commit is contained in:
Griatch 2015-02-08 23:36:53 +01:00
parent 16b7a79573
commit 2aafafc09c
5 changed files with 91 additions and 35 deletions

View file

@ -310,6 +310,7 @@ class SharedMemoryModel(Model):
Delete the object, clearing cache
"""
self.flush_from_cache()
self._is_deleted = True
super(SharedMemoryModel, self).delete(*args, **kwargs)
def save(self, *args, **kwargs):