Skip to content

Commit

Permalink
Fix BigWigs integration
Browse files Browse the repository at this point in the history
  • Loading branch information
Nils89 committed Nov 14, 2024
1 parent 807fe5d commit f3dea4a
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
1.8.5-Cata
FIXES
- Fix BigWigs integration

1.8.4-Cata
FIXES
- Fix BigWigs integration
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG_NEW_VERSION.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
1.8.5-Cata
FIXES
- Fix BigWigs integration

1.8.4-Cata
FIXES
- Fix BigWigs integration
Expand Down
4 changes: 4 additions & 0 deletions changelog.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ local ct = {
}
GW.CHANGELOGS_TYPES = ct

addChange("1.8.5",{
{ct.bug, [=[Fix BigWigs integration]=]},
})

addChange("1.8.4",{
{ct.bug, [=[Fix BigWigs integration]=]},
})
Expand Down
2 changes: 1 addition & 1 deletion units/unitframes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ local function setUnitPortraitFrame(self)
end
elseif BigWigs then
local npcId = GW.GetUnitCreatureId(self.unit)
for _, module in next, BigWigs:IterateBossModules() do
for _, module in BigWigs:IterateBossModules() do
if module.enableMobs[npcId] then
foundBossMod = true
break
Expand Down

0 comments on commit f3dea4a

Please sign in to comment.