Minor translation fixes, added all map translationsfor party updates, translated all mob names for Flame and Snow dungeon to all locales, fixed realtime countdowns and tooltip element centering, applied use of toolTip for affect icons

This commit is contained in:
Mind Rapist
2026-02-09 04:08:53 +02:00
parent 659e0e2dde
commit 90c18b81b7
40 changed files with 1977 additions and 109 deletions

View File

@@ -26,9 +26,14 @@ class CursorImage(object):
self.handle = 0
self.LoadImage(imageName)
# MR-10: Fix mouse destruction
def __del__(self):
if grpImage and self.handle:
grpImage.Delete(self.handle)
try:
if grpImage and self.handle and hasattr(grpImage, "Delete"):
grpImage.Delete(self.handle)
except:
pass
# MR-10: -- END OF -- Fix mouse destruction
def LoadImage(self, imageName):
try: