Skip to content

Commit

Permalink
2.2.71-Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Goldpaw committed Jan 13, 2024
1 parent 1fd6bd8 commit 6b4df6b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Bagnon_ItemInfo/Modules/ItemLevel.lua
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ Private.AddUpdater(Module, function(self)

-- https://wowpedia.fandom.com/wiki/Enum.InventoryType
local class, equip, level, quality = self.info.class, self.info.equip, self.info.level, self.info.quality
if (not equip) then
if (not equip and self.info.hyperlink) then
_,_,_,equip = GetItemInfoInstant(self.info.hyperlink)
end
local noequip = not equip or not _G[equip] or equip == "INVTYPE_BAG" or equip == "INVTYPE_NON_EQUIP" or equip == "INVTYPE_TABARD" or equip == "INVTYPE_AMMO" or equip == "INVTYPE_QUIVER" or equip == "INVTYPE_BODY"
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [2.2.71-Release] 2024-01-13
### Fixed
- Fixed an issue that caused a bunch of bugs on logon, especially in Wrath and Classic.

## [2.2.70-Release] 2023-12-15
### Added
- Added our options menu to the blizzard interface options addons menu.
Expand Down

0 comments on commit 6b4df6b

Please sign in to comment.