Skip to content

Commit

Permalink
2.1.66-Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Goldpaw committed Oct 26, 2023
1 parent 1da7316 commit 552bae3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Bagnon_ItemInfo/Modules/ItemBind.lua
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ Private.AddUpdater(Module, function(self)
end

-- Item is BoE or BoU, has it been bound to the player yet?
if (quality and quality > 1) and (bind == 2 or bind == 3) then
-- *in retail, all items can bind now thanks to transmogs
if (quality and ((retail and quality >= 0) or quality > 1)) and (bind == 2 or bind == 3) then

local show = true
local bag, slot = self:GetBag(), self:GetID()
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.1.66-Release] 2023-10-26
### Fixed
- All item qualities including poor and common will now display the BoE label when appropriate in Retail.

## [2.1.65-Release] 2023-10-25
### Added
- Added settings for garbage desaturation and darkening to the new `/bif` menu. This setting is currently not available through chat commands.
Expand Down

0 comments on commit 552bae3

Please sign in to comment.