Can now log in to a character selection screen. Lots more testing required before one-char-per-session works.

This commit is contained in:
Griatch 2013-02-03 00:25:06 +01:00
parent c0d634fe8c
commit f1767251c6
6 changed files with 41 additions and 27 deletions

View file

@ -282,7 +282,8 @@ class ObjectDB(TypedObject):
def __sessid_del(self):
"Deleter. Allows for del self.player"
del_field_cache(self, "sessid")
player = property(__sessid_get, __sessid_set, __sessid_del)
sessid = property(__sessid_get, __sessid_set, __sessid_del)
# location property (wraps db_location)
#@property
def __location_get(self):