Deschideți uiaffectshower.py din client și adaugați/înlocuiți:
Cod: Selectaţi tot
def SetHorseState(self, level, health, battery):
if level==0:
self.horseImage=None
else:
image = HorseImage()
image.SetParent(self)
image.SetState(level, health, battery)
image.Show()
self.horseImage=image
self.__ArrangeImageList()