Skip to content

Commit

Permalink
Revert "Include Death Knights in strings used for Wrath Classic"
Browse files Browse the repository at this point in the history
This reverts commit c09f96b.
  • Loading branch information
EsreverWoW committed Aug 20, 2022
1 parent c09f96b commit a072a05
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions PallyPower.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2881,9 +2881,9 @@ function PallyPower:UpdatePButton(button, baseName, classID, playerID, mousebutt
end
end
end
-- Greater Blessing of Salvation [enabled for non-tanks]
-- Greater Blessing of Salvation [enabed for non-tanks]
button:SetAttribute("spell1", gSpell)
-- Normal Blessing of Salvation [enabled for non-tanks]
-- Normal Blessing of Salvation [enabed for non-tanks]
button:SetAttribute("spell2", nSpell)
else
-- Greater Blessings [enabled]
Expand Down
28 changes: 14 additions & 14 deletions PallyPowerOptions.lua
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ PallyPower.options = {
order = 1,
type = "toggle",
name = L["Smart Buffs"],
desc = PallyPower.isWrath and L["If you enable this option, you will not be allowed to assign Blessing of Wisdom to Warriors, Rogues, or Death Knights and Blessing of Might to Mages, Warlocks, or Hunters."] or L["If you enable this option, you will not be allowed to assign Blessing of Wisdom to Warriors or Rogues, and Blessing of Might to Mages, Warlocks, or Hunters."],
desc = L["If you enable this option, you will not be allowed to assign Blessing of Wisdom to Warriors or Rogues, and Blessing of Might to Mages, Warlocks, or Hunters."],
width = 1.0,
get = function(info)
return PallyPower.opt.SmartBuffs
Expand Down Expand Up @@ -728,13 +728,13 @@ PallyPower.options = {
mainroles_desc = {
order = 0,
type = "description",
name = PallyPower.isWrath and L["MAIN_ROLES_DESCRIPTION_WRATH"] or L["MAIN_ROLES_DESCRIPTION"]
name = L["MAIN_ROLES_DESCRIPTION"]
},
maintank_buff = {
order = 1,
type = "toggle",
name = L["Auto-Buff Main Tank"],
desc = PallyPower.isWrath and L["If you enable this option PallyPower will automatically over-write a Greater Blessing with a Normal Blessing on players marked with the |cffffd200Main Tank|r role in the Blizzard Raid Panel. This is useful for spot buffing the |cffffd200Main Tank|r role with Blessing of Sanctuary."] or L["If you enable this option PallyPower will automatically over-write a Greater Blessing with a Normal Blessing on players marked with the |cffffd200Main Tank|r role in the Blizzard Raid Panel. This is useful to avoid blessing the |cffffd200Main Tank|r role with a Greater Blessing of Salvation."],
desc = L["If you enable this option PallyPower will automatically over-write a Greater Blessing with a Normal Blessing on players marked with the |cffffd200Main Tank|r role in the Blizzard Raid Panel. This is useful to avoid blessing the |cffffd200Main Tank|r role with a Greater Blessing of Salvation."],
width = "full",
get = function(info)
return PallyPower.opt.mainTank
Expand All @@ -744,11 +744,11 @@ PallyPower.options = {
PallyPower:UpdateRoster()
end
},
maintank_GBWarriorPDeathKnight = {
maintank_GBWarrior = {
order = 2,
type = "select",
name = PallyPower.isWrath and L["Override Warriors / Death Knights..."] or L["Override Warriors..."],
desc = PallyPower.isWrath and L["Select the Greater Blessing assignment you wish to over-write on Main Tank: Warriors / Death Knights."] or L["Select the Greater Blessing assignment you wish to over-write on Main Tank: Warriors."],
name = L["Override Warriors..."],
desc = L["Select the Greater Blessing assignment you wish to over-write on Main Tank: Warriors."],
width = 1.2,
disabled = function(info)
return (not (PallyPower.opt.mainTank))
Expand Down Expand Up @@ -776,11 +776,11 @@ PallyPower.options = {
[6] = PallyPower.GSpells[6] -- Greater Blessing of Sanctuary
}
},
maintank_NBWarriorPDeathKnight = {
maintank_NBWarrior = {
order = 3,
type = "select",
name = L["...with Normal..."],
desc = PallyPower.isWrath and L["Select the Normal Blessing you wish to use to over-write the Main Tank: Warriors / Death Knights."] or L["Select the Normal Blessing you wish to use to over-write the Main Tank: Warriors."],
desc = L["Select the Normal Blessing you wish to use to over-write the Main Tank: Warriors."],
width = 0.9,
disabled = function(info)
return (not (PallyPower.opt.mainTank))
Expand Down Expand Up @@ -878,7 +878,7 @@ PallyPower.options = {
order = 6,
type = "toggle",
name = L["Auto-Buff Main Assistant"],
desc = PallyPower.isWrath and L["If you enable this option PallyPower will automatically over-write a Greater Blessing with a Normal Blessing on players marked with the |cffffd200Main Assistant|r role in the Blizzard Raid Panel. This is useful for spot buffing the |cffffd200Main Assistant|r role with Blessing of Sanctuary."] or L["If you enable this option PallyPower will automatically over-write a Greater Blessing with a Normal Blessing on players marked with the |cffffd200Main Assistant|r role in the Blizzard Raid Panel. This is useful to avoid blessing the |cffffd200Main Assistant|r role with a Greater Blessing of Salvation."],
desc = L["If you enable this option PallyPower will automatically over-write a Greater Blessing with a Normal Blessing on players marked with the |cffffd200Main Assistant|r role in the Blizzard Raid Panel. This is useful to avoid blessing the |cffffd200Main Assistant|r role with a Greater Blessing of Salvation."],
width = "full",
get = function(info)
return PallyPower.opt.mainAssist
Expand All @@ -888,11 +888,11 @@ PallyPower.options = {
PallyPower:UpdateRoster()
end
},
mainassist_GBWarriorPDeathKnight = {
mainassist_GBWarrior = {
order = 7,
type = "select",
name = PallyPower.isWrath and L["Override Warriors / Death Knights..."] or L["Override Warriors..."],
desc = PallyPower.isWrath and L["Select the Greater Blessing assignment you wish to over-write on Main Assist: Warriors / Death Knights."] or L["Select the Greater Blessing assignment you wish to over-write on Main Assist: Warriors."],
name = L["Override Warriors..."],
desc = L["Select the Greater Blessing assignment you wish to over-write on Main Assist: Warriors."],
width = 1.2,
disabled = function(info)
return (not (PallyPower.opt.mainAssist))
Expand Down Expand Up @@ -920,11 +920,11 @@ PallyPower.options = {
[6] = PallyPower.GSpells[6] -- Greater Blessing of Sanctuary
}
},
mainassist_NBWarriorPDeathKnight = {
mainassist_NBWarrior = {
order = 8,
type = "select",
name = L["...with Normal..."],
desc = PallyPower.isWrath and L["Select the Normal Blessing you wish to use to over-write the Main Assist: Warriors / Death Knights."] or L["Select the Normal Blessing you wish to use to over-write the Main Assist: Warriors."],
desc = L["Select the Normal Blessing you wish to use to over-write the Main Assist: Warriors."],
width = 0.9,
disabled = function(info)
return (not (PallyPower.opt.mainAssist))
Expand Down

0 comments on commit a072a05

Please sign in to comment.