diff --git a/otp/distributed/PotentialAvatar.py b/otp/distributed/PotentialAvatar.py index 3c979fc6..67bab13c 100755 --- a/otp/distributed/PotentialAvatar.py +++ b/otp/distributed/PotentialAvatar.py @@ -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 diff --git a/toontown/toon/DistributedToonUD.py b/toontown/toon/DistributedToonUD.py index 4c39dc39..4bd6cb29 100755 --- a/toontown/toon/DistributedToonUD.py +++ b/toontown/toon/DistributedToonUD.py @@ -510,3 +510,9 @@ class DistributedToonUD(DistributedObjectUD): def setTrueFriends(self, trueFriends): pass + + def setWishName(self, todo0): + pass + + def setWishNameState(self, todo0): + pass