Skip to content

Commit

Permalink
SoD Mage fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Vae2009 committed Dec 18, 2024
1 parent a9bb73c commit a6b8928
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion ConROC_Mage.toc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## Title:-|cffFFFFFFConROC|r- |cff69CCF0Mage|r
## Version: 1.15.11
## Version: 1.15.12
## Author: Vae
## Interface: 11505
## SavedVariablesPerCharacter: ConROCMageSpells
Expand Down
8 changes: 4 additions & 4 deletions mage.lua
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ function ConROC.Mage.Damage(_, timeShift, currentSpell, gcd)
end

--[[if ConROC:CheckBox(ConROC_SM_Rune_ArcaneSurge) and _ArcaneSurge_COUNT then
return _RuneArcaneSurge;
return _ArcaneSurge;
end]]

if ConROC:CheckBox(ConROC_SM_Rune_IceLance) and _IceLance_RDY and (_is_moving or _FingersofFrost_COUNT > 1) then
Expand Down Expand Up @@ -257,7 +257,7 @@ function ConROC.Mage.Damage(_, timeShift, currentSpell, gcd)
return _Frostbolt;
end
if ConROC:CheckBox(ConROC_SM_Rune_IceLance) and _IceLance_RDY and (_is_moving or _FingersofFrost_BUFF) then
return _RuneIceLance;
return _IceLance;
end

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

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

if _ArcaneExplosion_RDY and _target_in_melee then
Expand Down
2 changes: 1 addition & 1 deletion mage_spellmenu.lua
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ function ConROC:SpellmenuClass()
frameName = "Runes",
spells = {
{spellID = ids.Runes.ArcaneBlast, spellCheckbox = "Rune_ArcaneBlast", reqLevel = 1, type = "spell"},
{spellID = ids.Runes.ArcaneBlast, spellCheckbox = "Rune_ArcaneBlastCount", reqLevel = 1, type = "textfield", icon = ids.Runes.ArcaneBlast, customName = "Number of Arcane Blast"},
{spellID = ids.Runes.ArcaneBlast, spellCheckbox = "Rune_ArcaneBlastCount", reqLevel = 1, type = "textfield", icon = 230237, customName = "Number of Arcane Blast"},
--{spellID = ids.Runes.ArcaneSurge, spellCheckbox = "Rune_ArcaneSurge", reqLevel = 1, type = "spell"},
{spellID = ids.Runes.IceLance, spellCheckbox = "Rune_IceLance", reqLevel = 1, type = "spell"},
{spellID = ids.Runes.IcyVeins, spellCheckbox = "Rune_IcyVeins", reqLevel = 1, type = "spell"},
Expand Down

0 comments on commit a6b8928

Please sign in to comment.