PotentialAvatar cleanup

This commit is contained in:
John 2015-07-17 19:05:29 +03:00
parent d2834a6f65
commit d5dc2c9d50
2 changed files with 7 additions and 9 deletions

View file

@ -1,19 +1,11 @@
class PotentialAvatar:
def __init__(self, id, names, dna, position, allowedName, creator = 1, shared = 1, online = 0, wishState = 'CLOSED', wishName = '', defaultShard = 0, lastLogout = 0):
def __init__(self, id, names, dna, position, allowedName):
self.id = id
self.name = names[0]
self.dna = dna
self.avatarType = None
self.position = position
self.wantName = names[1]
self.approvedName = names[2]
self.rejectedName = names[3]
self.allowedName = allowedName
self.wishState = wishState
self.wishName = wishName
self.creator = creator
self.shared = shared
self.online = online
self.defaultShard = defaultShard
self.lastLogout = lastLogout

View file

@ -510,3 +510,9 @@ class DistributedToonUD(DistributedObjectUD):
def setTrueFriends(self, trueFriends):
pass
def setWishName(self, todo0):
pass
def setWishNameState(self, todo0):
pass