mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2025-01-09 17:53:50 +00: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:
|
if newGagLevel == curGagLevel:
|
||||||
return
|
return
|
||||||
curGagLevel = newGagLevel
|
curGagLevel = newGagLevel
|
||||||
access = []
|
access = [0, 0, 0, 0, 0, 0, 0]
|
||||||
|
|
||||||
for i in xrange(len(self.oldTrackAccess)):
|
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)
|
base.localAvatar.setTrackAccess(access)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue