Skip to content

Commit

Permalink
Patch 8.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Sonaza committed Jul 11, 2019
1 parent c9803d9 commit 2ee7a33
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 3.0.6
* Patch 8.2.0.
* Attempted blind fix for artifact module GetItemInfo error.

## 3.0.5
* Fixed reputation module menu not properly changing reputations.
* Fixed xp visualizer calculating experience rewards for hidden quests.
Expand Down
4 changes: 2 additions & 2 deletions Experiencer.toc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
## Interface: 80000
## Interface: 80200
## Title: Experiencer
## Notes: Simple but advanced tracking progress bar addon
## Author: Sonaza
## Version: 3.0.5
## Version: 3.0.6
## OptionalDeps: Ace3
## SavedVariables: ExperiencerDB, ExperiencerDB_module_experience, ExperiencerDB_module_reputation, ExperiencerDB_module_artifact, ExperiencerDB_module_honor, ExperiencerDB_module_conquest

Expand Down
7 changes: 6 additions & 1 deletion modules/artifact.lua
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,12 @@ function module:GetArtifactName()
if (not azeriteItemLocation) then
return "Azerite Artifact";
end
local itemID = GetInventoryItemID("player", azeriteItemLocation.equipmentSlotIndex);

-- idk if the azeriteItemLocation.equipmentSlotIndex has changed or whatever
--local itemID = GetInventoryItemID("player", azeriteItemLocation.equipmentSlotIndex);
local itemID = GetInventoryItemID("player", 2); -- can probably hardcode the neck with its slot id
if (itemID == nil) then return "Unknown" end

local name = GetItemInfo(itemID);
if (not name) then
self:RegisterEvent("GET_ITEM_INFO_RECEIVED");
Expand Down

0 comments on commit 2ee7a33

Please sign in to comment.