feat: store and display enchant indicators in inspect window gear list

This commit is contained in:
Kelsi 2026-03-12 07:37:29 -07:00
parent 7cb4887011
commit d26bac0221
3 changed files with 13 additions and 2 deletions

View file

@ -339,7 +339,8 @@ public:
uint32_t unspentTalents = 0;
uint8_t talentGroups = 0;
uint8_t activeTalentGroup = 0;
std::array<uint32_t, 19> itemEntries{}; // 0=head…18=ranged
std::array<uint32_t, 19> itemEntries{}; // 0=head…18=ranged
std::array<uint16_t, 19> enchantIds{}; // permanent enchant per slot (0 = none)
};
const InspectResult* getInspectResult() const {
return inspectResult_.guid ? &inspectResult_ : nullptr;