Skip to content

Commit

Permalink
2.0.86-Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Goldpaw committed Jan 13, 2024
1 parent 3b4942e commit 159be9a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Bagnon_ItemLevel/main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ Module:AddUpdater(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 quip == "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.0.86-Release] 2024-01-13
### Fixed
- Fixed an issue that caused a bunch of bugs on logon, especially in Wrath and Classic.

## [2.0.85-Release] 2023-11-17
- Updated for WoW Client Patch 1.15.0.

Expand Down

0 comments on commit 159be9a

Please sign in to comment.