mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-23 11:42:39 -06:00
Merge branch 'master' of https://gitlab.com/toontown-created/src
This commit is contained in:
commit
51d23e7e25
1 changed files with 2 additions and 2 deletions
|
@ -1007,10 +1007,10 @@ class NPCMoviePlayer(DirectObject.DirectObject):
|
|||
if newGagLevel == curGagLevel:
|
||||
return
|
||||
curGagLevel = newGagLevel
|
||||
access = []
|
||||
access = [0, 0, 0, 0, 0, 0, 0]
|
||||
|
||||
for i in xrange(len(self.oldTrackAccess)):
|
||||
access[i] = 1 if self.oldTrackAccess[i] > 0 else 0
|
||||
access[i] = curGagLevel if self.oldTrackAccess[i] > 0 else 0
|
||||
|
||||
base.localAvatar.setTrackAccess(access)
|
||||
|
||||
|
|
Loading…
Reference in a new issue