decompilation: Fix toontown.shtiker.PurchaseManager decompilation.
This commit is contained in:
parent
e1646c8ae2
commit
908563e9dd
1 changed files with 2 additions and 2 deletions
|
@ -64,9 +64,9 @@ class PurchaseManager(DistributedObject.DistributedObject):
|
|||
self.votesArray])
|
||||
|
||||
def calcHasLocalToon(self):
|
||||
if base.localAvatar.doId not in self.newbieIds:
|
||||
retval = base.localAvatar.doId not in self.newbieIds and base.localAvatar.doId in self.playerIds
|
||||
if self.metagameRound > -1 and self.metagameRound < TravelGameGlobals.FinalMetagameRoundIndex:
|
||||
retval = base.localAvatar.doId in self.playerIds
|
||||
retval = self.metagameRound > -1 and self.metagameRound < TravelGameGlobals.FinalMetagameRoundIndex and base.localAvatar.doId in self.playerIds
|
||||
self.notify.debug('calcHasLocalToon returning %s' % retval)
|
||||
return retval
|
||||
|
||||
|
|
Loading…
Reference in a new issue