File Details
v1.7.3
- R
- Jun 22, 2026
- 235.32 KB
- 1.2K
- 12.1.0+3
- Retail
File Name
iLvlVisualPanel.zip
Supported Versions
- 12.1.0
- 12.0.7
- 12.0.5
- 12.0.1
Version 1.7.3
Bags — Item Level Display Fix
- Fixed intermittent / missing item level on bag items: the display relied on the asynchronous
C_Item.GetItemInfo, which returnsnilfor uncached items (right after login,/reload, fresh loot or mail). Affected items silently fell through and never refreshed. - Switched to cache-independent APIs:
C_Item.GetItemInfoInstantfor the class filter (Weapons / Armor) andC_Container.GetContainerItemInfofor quality and item link. Item level is no longer dropped while the client cache populates. - Replaced the deprecated global
GetItemQualityColorwithC_Item.GetItemQualityColor. - Added a profile guard in
UpdateBagButton: a bag refresh firing before the database is initialized no longer throwsattempt to index nil value.