def Tick(self):
# check to see if anyone has been "eliminated" by falling off the tabletop
for each in self.players:
if plus.getLocation(each)[1] < -6:
plus.eliminatePlayer(each)
deathOpt = ("Misc_SinisterLaugh1.wav", "Misc_SinisterLaugh3.wav", "Misc_DontLookDown.wav")
sounds['death'] = plus.createSound("Sounds/announcers/"+random.choice(deathOpt), False, (0,0,0))
plus.playSound(sounds['death'])
This script is part of that from Flextop, it causes a Runtime-Error when a bot is eliminated from falling. Any idea why?