loop:
munchkin = [self.findByType("munchkin", self.findEnemies())]
ogre = [self.findByType("ogre", self.findEnemies())]
thrower = [self.findByType("thrower", self.findEnemies())]
if len(munchkin) >= 5:
self.cleave(munchkin)
self.say(len(munchkin))
self.say(munchkin)
it gives me the length on 1
and it give me the names of the muchkins with commas inbetween the names