Skip to content

Commit 51f3cdd

Browse files
committed
Update TOC for 11.0.5
1 parent 246f86a commit 51f3cdd

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

EnhancedRaidFrames.toc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Interface: 11504, 40400, 110002
1+
## Interface: 11504, 40400, 110005
22
## Title: Enhanced Raid Frames
33
## Notes: Enhances the Blizzard raid frames with configurable Buff/Debuff indicators
44
## IconTexture: Interface\Icons\spell_holy_borrowedtime

Libs/LibDispel/LibDispel.lua

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
local MAJOR, MINOR = "LibDispel-1.0", 10
1+
local MAJOR, MINOR = "LibDispel-1.0", 11
22
assert(LibStub, MAJOR.." requires LibStub")
33
local lib = LibStub:NewLibrary(MAJOR, MINOR)
44
if not lib then return end
@@ -52,7 +52,7 @@ if Retail then
5252
BlockList[108220] = "Deep Corruption"
5353
BlockList[116095] = "Disable" -- slow
5454

55-
-- Bleed spells updated August 7th 2024 by Simpy for Patch 11.0
55+
-- Bleed spells updated October 21st 2024 by Simpy for Patch 11.0.5
5656
--- Combined lists (without duplicates, filter requiring either main or effect bleed):
5757
----> Apply Aura
5858
-----> Mechanic Bleeding: https://www.wowhead.com/spells/mechanic:15?filter=109;6;0
@@ -122,7 +122,6 @@ if Retail then
122122
BleedList[35318] = "Saw Blade"
123123
BleedList[35321] = "Gushing Wound"
124124
BleedList[36023] = "Deathblow"
125-
BleedList[36054] = "Deathblow"
126125
BleedList[36332] = "Rake"
127126
BleedList[36383] = "Carnivorous Bite"
128127
BleedList[36590] = "Rip"
@@ -1010,7 +1009,7 @@ if Retail then
10101009
BleedList[432416] = "Treacherous Blow"
10111010
BleedList[433825] = "Blood Feast"
10121011
BleedList[434773] = "Mean Mug"
1013-
BleedList[434860] = "Cosmic Wound"
1012+
BleedList[434860] = "Phase Blades"
10141013
BleedList[438599] = "Bleeding Jab"
10151014
BleedList[438975] = "Shredding Sting"
10161015
BleedList[439037] = "Disembowel"
@@ -1050,6 +1049,7 @@ if Retail then
10501049
BleedList[454472] = "Gash Frenzy"
10511050
BleedList[454587] = "Serrated Teeth"
10521051
BleedList[454694] = "Headbutt"
1052+
BleedList[454783] = "Void Rift"
10531053
BleedList[455543] = "Crushing Claws"
10541054
BleedList[455815] = "Harvest Cabbage"
10551055
BleedList[455896] = "Flurry of Steel"
@@ -1062,6 +1062,7 @@ if Retail then
10621062
BleedList[457947] = "Limb-shredder Tornado"
10631063
BleedList[458010] = "Deep Wounds"
10641064
BleedList[459495] = "Soul Reaper"
1065+
BleedList[459560] = "Laceration"
10651066
BleedList[459753] = "Ravenous Leap"
10661067
BleedList[462018] = "Barbed Bolt"
10671068
BleedList[463227] = "Splintered"
@@ -1132,7 +1133,7 @@ do
11321133
end
11331134

11341135
-- this will fix a problem where spells dont show as existing because they are 'hidden'
1135-
local undoRanks = (not Retail and GetCVar('ShowAllSpellRanks') ~= '1') and SetCVar('ShowAllSpellRanks', '1')
1136+
local undoRanks = (Classic and GetCVar('ShowAllSpellRanks') ~= '1') and SetCVar('ShowAllSpellRanks', '1')
11361137

11371138
if event == 'UNIT_PET' then
11381139
DispelList.Magic = CheckPetSpells()

0 commit comments

Comments
 (0)