- Mesaj
- 480
- Çözümler
- 30
- Beğeni
- 120
- Puan
- 574
- Ticaret Puanı
- 0
uitooltip.py:
if time > 0:
minute = (time / 60)
second = (time % 60)
timeString = localeInfo.TOOLTIP_POTION_TIME
if minute > 0:
timeString += " " + str(minute) + localeInfo.TOOLTIP_POTION_MIN
if second > 0:
timeString += " " + str(second) + localeInfo.TOOLTIP_POTION_SEC
self.AppendTextLine(timeString)
if app.ENABLE_BLENDTIME_SYSTEM:
self.AppendSpace(6)
self.AppendTextLine(localeInfo.BLEND_TIME_TOOLTIP, self.NEGATIVE_COLOR)
else:
self.AppendTextLine(localeInfo.BLEND_POTION_NO_TIME)