diff --git a/README.md b/README.md index 30eb315d..9dac19f0 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,8 @@ This repository contains all client-side data, including locale files, configura ## 📋 Changelog +### 🐛 Bug fixes +* **UI:** Recovered the quest scroll icon flashing + ### ⬆️ Feature Improvements -* **Large maps updated:** Updated the images for the Large map for Threeway, Milgyo, Fireland and Ice mountain maps -* **Updated the environment:** Added the bridge and Fire dungeon entrance in Fireland. Added the Ice dungeon entrance in Ice mountain. Updated the Grotto of Exile entrance in Threeway. Updated the terrain around the Devil's Catacomb in Milgyo. +* **Items & Mobs:** Started implementing Nemere's Watchtower dungeon. Added some missing items and made a few corrections (en & gr locales only) diff --git a/assets/locale/locale/en/item_proto b/assets/locale/locale/en/item_proto index 7980ee4c..34e88c1d 100644 Binary files a/assets/locale/locale/en/item_proto and b/assets/locale/locale/en/item_proto differ diff --git a/assets/locale/locale/en/mob_proto b/assets/locale/locale/en/mob_proto index df667af1..8fca7594 100644 Binary files a/assets/locale/locale/en/mob_proto and b/assets/locale/locale/en/mob_proto differ diff --git a/assets/locale/locale/gr/item_proto b/assets/locale/locale/gr/item_proto index 1f938621..4a813002 100644 Binary files a/assets/locale/locale/gr/item_proto and b/assets/locale/locale/gr/item_proto differ diff --git a/assets/locale/locale/gr/mob_proto b/assets/locale/locale/gr/mob_proto index f3da9075..e6f7c048 100644 Binary files a/assets/locale/locale/gr/mob_proto and b/assets/locale/locale/gr/mob_proto differ diff --git a/assets/root/interfacemodule.py b/assets/root/interfacemodule.py index 0520765e..25228879 100644 --- a/assets/root/interfacemodule.py +++ b/assets/root/interfacemodule.py @@ -1298,16 +1298,25 @@ class Interface(object): # QUEST_LETTER_IMAGE ## Quest image replacement import item - if "item"==iconType: - item.SelectItem(int(iconName)) - buttonImageFileName=item.GetIconImageFileName() - else: - buttonImageFileName=iconName - btn.SetUpVisual(buttonImageFileName) - btn.SetOverVisual(buttonImageFileName) - btn.SetDownVisual(buttonImageFileName) - btn.Flash() + # MR-7: Fix quest letter icon flashing + if "item" == iconType: + item.SelectItem(int(iconName)) + buttonImageFileName = item.GetIconImageFileName() + else: + buttonImageFileName = iconName + + if "highlight" == iconType: + btn.SetUpVisual("locale/ymir_ui/highlighted_quest.tga") + btn.SetOverVisual("locale/ymir_ui/highlighted_quest_r.tga") + btn.SetDownVisual("locale/ymir_ui/highlighted_quest_r.tga") + else: + btn.SetUpVisual(localeInfo.GetLetterCloseImageName()) + btn.SetOverVisual(localeInfo.GetLetterOpenImageName()) + btn.SetDownVisual(localeInfo.GetLetterOpenImageName()) + + btn.Flash() + # MR-7: -- END OF -- Fix quest letter icon flashing # END_OF_QUEST_LETTER_IMAGE if app.IsRTL():