Skip to content

Commit a6b8928

Browse files
committed
SoD Mage fixes.
1 parent a9bb73c commit a6b8928

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

ConROC_Mage.toc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Title:-|cffFFFFFFConROC|r- |cff69CCF0Mage|r
2-
## Version: 1.15.11
2+
## Version: 1.15.12
33
## Author: Vae
44
## Interface: 11505
55
## SavedVariablesPerCharacter: ConROCMageSpells

mage.lua

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ function ConROC.Mage.Damage(_, timeShift, currentSpell, gcd)
216216
end
217217

218218
--[[if ConROC:CheckBox(ConROC_SM_Rune_ArcaneSurge) and _ArcaneSurge_COUNT then
219-
return _RuneArcaneSurge;
219+
return _ArcaneSurge;
220220
end]]
221221

222222
if ConROC:CheckBox(ConROC_SM_Rune_IceLance) and _IceLance_RDY and (_is_moving or _FingersofFrost_COUNT > 1) then
@@ -257,7 +257,7 @@ function ConROC.Mage.Damage(_, timeShift, currentSpell, gcd)
257257
return _Frostbolt;
258258
end
259259
if ConROC:CheckBox(ConROC_SM_Rune_IceLance) and _IceLance_RDY and (_is_moving or _FingersofFrost_BUFF) then
260-
return _RuneIceLance;
260+
return _IceLance;
261261
end
262262

263263
if ConROC:CheckBox(ConROC_SM_Filler_Fireball) and _Fireball_RDY then
@@ -279,11 +279,11 @@ function ConROC.Mage.Damage(_, timeShift, currentSpell, gcd)
279279
if (currentSpecID == ids.Spec.Arcane) then
280280
if ConROC_AoEButton:IsVisible() then
281281
if ConROC:CheckBox(ConROC_SM_Rune_LivingFlame) and _LivingFlame_RDY then
282-
return _RuneLivingFlame;
282+
return _LivingFlame;
283283
end
284284

285285
--[[if ConROC:CheckBox(ConROC_SM_Rune_ArcaneBlast) and _ArcaneBlast_RDY and _ArcaneBlast_COUNT < ConROC_SM_Rune_ArcaneBlastCount:GetNumber() then
286-
return _RuneArcaneBlast;
286+
return _ArcaneBlast;
287287
end]]
288288

289289
if _ArcaneExplosion_RDY and _target_in_melee then

mage_spellmenu.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ function ConROC:SpellmenuClass()
123123
frameName = "Runes",
124124
spells = {
125125
{spellID = ids.Runes.ArcaneBlast, spellCheckbox = "Rune_ArcaneBlast", reqLevel = 1, type = "spell"},
126-
{spellID = ids.Runes.ArcaneBlast, spellCheckbox = "Rune_ArcaneBlastCount", reqLevel = 1, type = "textfield", icon = ids.Runes.ArcaneBlast, customName = "Number of Arcane Blast"},
126+
{spellID = ids.Runes.ArcaneBlast, spellCheckbox = "Rune_ArcaneBlastCount", reqLevel = 1, type = "textfield", icon = 230237, customName = "Number of Arcane Blast"},
127127
--{spellID = ids.Runes.ArcaneSurge, spellCheckbox = "Rune_ArcaneSurge", reqLevel = 1, type = "spell"},
128128
{spellID = ids.Runes.IceLance, spellCheckbox = "Rune_IceLance", reqLevel = 1, type = "spell"},
129129
{spellID = ids.Runes.IcyVeins, spellCheckbox = "Rune_IcyVeins", reqLevel = 1, type = "spell"},

0 commit comments

Comments
 (0)