diff --git a/Decursive/DCR_init.lua b/Decursive/DCR_init.lua
index 55f72a9..61c4575 100644
--- a/Decursive/DCR_init.lua
+++ b/Decursive/DCR_init.lua
@@ -124,8 +124,8 @@ DC.AfflictionSound = "Interface\\AddOns\\Decursive\\Sounds\\AfflictionAlert.wav"
--DC.AfflictionSound = "Sound\\Doodad\\BellTollTribal.wav"
DC.FailedSound = "Interface\\AddOns\\Decursive\\Sounds\\FailedSpell.wav";
-DC.IconON = "Interface\\AddOns\\Decursive\\iconON.tga";
-DC.IconOFF = "Interface\\AddOns\\Decursive\\iconOFF.tga";
+DC.IconON = "Interface\\AddOns\\Decursive\\iconON.blp";
+DC.IconOFF = "Interface\\AddOns\\Decursive\\iconOFF.blp";
for class in pairs(RAID_CLASS_COLORS) do
DC["CLASS_"..class] = class
@@ -826,7 +826,7 @@ function D:OnDisable() -- When the addon is disabled by Ace
D.Status.Enabled = false;
D.DcrFullyInitialized = false;
- D:SetIcon("Interface\\AddOns\\Decursive\\iconOFF.tga");
+ D:SetIcon("Interface\\AddOns\\Decursive\\iconOFF.blp");
if ( D.profile.ShowDebuffsFrame) then
D.MFContainer:Hide();
@@ -986,6 +986,7 @@ function D:Configure() --{{{
CuringSpells[DC.POISON] = false;
CuringSpells[DC.DISEASE] = false;
CuringSpells[DC.CHARMED] = false;
+ CuringSpells[DC.BLEED] = false; -- CoA: reset so Cauterize doesn't ghost after respec
local Spell, spellName, Type, _;
local GetSpellInfo = _G.GetSpellInfo;
diff --git a/Decursive/Dcr_LiveList.xml b/Decursive/Dcr_LiveList.xml
index 982cc0a..cdc890d 100644
--- a/Decursive/Dcr_LiveList.xml
+++ b/Decursive/Dcr_LiveList.xml
@@ -84,7 +84,7 @@
-
+
@@ -97,7 +97,7 @@
-
+
diff --git a/Decursive/Dcr_opt.lua b/Decursive/Dcr_opt.lua
index 82b5d24..c8fcfb5 100644
--- a/Decursive/Dcr_opt.lua
+++ b/Decursive/Dcr_opt.lua
@@ -1877,6 +1877,7 @@ function D:SetCureOrder (ToChange)
[DC.POISON] = D.options.args.CureOptions.args.CurePoison,
[DC.DISEASE] = D.options.args.CureOptions.args.CureDisease,
[DC.CHARMED] = D.options.args.CureOptions.args.CureCharmed,
+ [DC.BLEED] = D.options.args.CureOptions.args.CureBleed, -- CoA: added with DC.BLEED
}
end
diff --git a/Decursive/Decursive.lua b/Decursive/Decursive.lua
index 9e7754d..34de0f6 100644
--- a/Decursive/Decursive.lua
+++ b/Decursive/Decursive.lua
@@ -397,7 +397,7 @@ do
if D.LiveList.TestItemDisplayed and i == 1 and Unit ~= "target" and Unit ~= "mouseover" and UnitExists(Unit) then
D:Debug("|cFFFF0000Setting test debuff for %s (debuff %d)|r", Unit, i);
- return "Test item", DC.TypeNames[D.Status.ReversedCureOrder[1]], 2, "Interface\\AddOns\\Decursive\\iconON.tga", D.LiveList.TestItemDisplayed + 70;
+ return "Test item", DC.TypeNames[D.Status.ReversedCureOrder[1]], 2, "Interface\\AddOns\\Decursive\\iconON.blp", D.LiveList.TestItemDisplayed + 70;
end
--D:Debug("|cFFFF0000Getting debuffs for %s , id = %d|r", Unit, i);
diff --git a/Decursive/Textures/BackDrop.blp b/Decursive/Textures/BackDrop.blp
new file mode 100644
index 0000000..aee00f3
Binary files /dev/null and b/Decursive/Textures/BackDrop.blp differ
diff --git a/Decursive/Textures/BackDrop.tga b/Decursive/Textures/BackDrop.tga
deleted file mode 100644
index c532d41..0000000
Binary files a/Decursive/Textures/BackDrop.tga and /dev/null differ
diff --git a/Decursive/Textures/GoldBorder.blp b/Decursive/Textures/GoldBorder.blp
new file mode 100644
index 0000000..4c0f30f
Binary files /dev/null and b/Decursive/Textures/GoldBorder.blp differ
diff --git a/Decursive/Textures/GoldBorder.tga b/Decursive/Textures/GoldBorder.tga
deleted file mode 100644
index 159a06e..0000000
Binary files a/Decursive/Textures/GoldBorder.tga and /dev/null differ
diff --git a/Decursive/iconOFF.blp b/Decursive/iconOFF.blp
new file mode 100644
index 0000000..8c37e65
Binary files /dev/null and b/Decursive/iconOFF.blp differ
diff --git a/Decursive/iconOFF.tga b/Decursive/iconOFF.tga
deleted file mode 100644
index 6207de6..0000000
Binary files a/Decursive/iconOFF.tga and /dev/null differ
diff --git a/Decursive/iconON.blp b/Decursive/iconON.blp
new file mode 100644
index 0000000..5c88fc0
Binary files /dev/null and b/Decursive/iconON.blp differ
diff --git a/Decursive/iconON.tga b/Decursive/iconON.tga
deleted file mode 100644
index dfe7563..0000000
Binary files a/Decursive/iconON.tga and /dev/null differ