Merge pull request #33 from MindRapist/mr-7

MR-7
This commit is contained in:
rtw1x1
2026-01-04 09:29:25 +00:00
committed by GitHub
6 changed files with 22 additions and 11 deletions

View File

@@ -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)

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -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():