Skip to content

Commit

Permalink
Update for patch 11.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Pingumania committed Jul 26, 2024
1 parent d1761a5 commit bc751f2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
ManiaTip Changes | 1.6.0
------------------------
- Update for patch 11.0.0

ManiaTip Changes | 1.5.0
------------------------
- Fix guild frame lag
Expand Down
2 changes: 1 addition & 1 deletion ManiaTip.toc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Interface: 100207
## Interface: 110000, 110002
## Version: @project-version@
## Title: ManiaTip
## Author: Pingumania
Expand Down
8 changes: 4 additions & 4 deletions core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,10 @@ ns.defaults = defaults

-- Faction names
local FactionNames = {}
for i = 1, 9999 do
local name = GetFactionInfoByID(i)
if name then
FactionNames[name] = true
for factionID = 1, 9999 do
local factionData = C_Reputation.GetFactionDataByID(factionID)
if factionData and factionData.name then
FactionNames[factionData.name] = true
end
end

Expand Down

0 comments on commit bc751f2

Please sign in to comment.