![]() |
#33
|
|||
|
|||
Try incrementing the to the next avatar before you access it:
Code:
nextAvatar = (nextAvatar + 1) % len(avatars) avatar = avatars[nextAvatar] |
|
|