mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-23 11:42:39 -06:00
Oops.. fixed
This commit is contained in:
parent
db0e37d784
commit
4aff992837
2 changed files with 2 additions and 2 deletions
|
@ -1009,7 +1009,7 @@ class NPCMoviePlayer(DirectObject.DirectObject):
|
|||
curGagLevel = newGagLevel
|
||||
access = [0, 0, 0, 0, 0, 0]
|
||||
|
||||
for i in len(access):
|
||||
for i in xrange(len(access)):
|
||||
if oldTrackAccess[i] == 1:
|
||||
access[i] = newGagLevel
|
||||
|
||||
|
|
|
@ -168,7 +168,7 @@ class TutorialManagerAI(DistributedObjectAI):
|
|||
av.inventory.zeroInv(killUber=True)
|
||||
access = av.getTrackAccess()
|
||||
|
||||
for i in len(access):
|
||||
for i in xrange(len(access)):
|
||||
if access[i] == 1:
|
||||
av.inventory.addItem(i, 1)
|
||||
|
||||
|
|
Loading…
Reference in a new issue