Pagina 1 din 1

[Python]Fix horse affect

Scris: Joi Sep 15, 2022 7:38 pm
de SnaKe
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()