mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2025-01-09 17:53:50 +00:00
PotentialAvatar cleanup
This commit is contained in:
parent
d2834a6f65
commit
d5dc2c9d50
2 changed files with 7 additions and 9 deletions
|
@ -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
|
||||
|
|
|
@ -510,3 +510,9 @@ class DistributedToonUD(DistributedObjectUD):
|
|||
|
||||
def setTrueFriends(self, trueFriends):
|
||||
pass
|
||||
|
||||
def setWishName(self, todo0):
|
||||
pass
|
||||
|
||||
def setWishNameState(self, todo0):
|
||||
pass
|
||||
|
|
Loading…
Reference in a new issue