Skip to content

Commit

Permalink
Add BuffGroup for feral forms
Browse files Browse the repository at this point in the history
  • Loading branch information
raethkcj committed Dec 13, 2023
1 parent d088ded commit d37bcbf
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 0 deletions.
2 changes: 2 additions & 0 deletions libs/StatLogic/Cata_Logic.lua
Original file line number Diff line number Diff line change
Expand Up @@ -343,11 +343,13 @@ if addon.class == "DRUID" then
{
["value"] = 1,
["buff"] = 768,
["group"] = addon.BuffGroup.Feral,
},
-- Bear Form
{
["value"] = 1,
["buff"] = 5487,
["group"] = addon.BuffGroup.Feral,
},
},
["ADD_AP_MOD_STR"] = {
Expand Down
1 change: 1 addition & 0 deletions libs/StatLogic/StatLogic.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1114,6 +1114,7 @@ do
AttackPower = 2,
SpellPower = 3,
Armor = 4,
Feral = 5,
}
local BuffGroupCache = {}

Expand Down
3 changes: 3 additions & 0 deletions libs/StatLogic/TBC_Logic.lua
Original file line number Diff line number Diff line change
Expand Up @@ -243,16 +243,19 @@ if addon.class == "DRUID" then
{
["value"] = 1,
["buff"] = 768,
["group"] = addon.BuffGroup.Feral,
},
-- Bear Form
{
["value"] = 1,
["buff"] = 5487,
["group"] = addon.BuffGroup.Feral,
},
-- Dire Bear Form
{
["value"] = 1,
["buff"] = 9634,
["group"] = addon.BuffGroup.Feral,
},
},
["ADD_AP_MOD_STR"] = {
Expand Down
3 changes: 3 additions & 0 deletions libs/StatLogic/Vanilla_Logic.lua
Original file line number Diff line number Diff line change
Expand Up @@ -175,16 +175,19 @@ if addon.class == "DRUID" then
{
["value"] = 1,
["buff"] = 768,
["group"] = addon.BuffGroup.Feral,
},
-- Bear Form
{
["value"] = 1,
["buff"] = 5487,
["group"] = addon.BuffGroup.Feral,
},
-- Dire Bear Form
{
["value"] = 1,
["buff"] = 9634,
["group"] = addon.BuffGroup.Feral,
},
},
["ADD_AP_MOD_STR"] = {
Expand Down
3 changes: 3 additions & 0 deletions libs/StatLogic/Wrath_Logic.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1017,16 +1017,19 @@ if addon.class == "DRUID" then
{
["value"] = 1,
["buff"] = 768,
["group"] = addon.BuffGroup.Feral,
},
-- Bear Form
{
["value"] = 1,
["buff"] = 5487,
["group"] = addon.BuffGroup.Feral,
},
-- Dire Bear Form
{
["value"] = 1,
["buff"] = 9634,
["group"] = addon.BuffGroup.Feral,
},
},
["ADD_AP_MOD_STR"] = {
Expand Down

0 comments on commit d37bcbf

Please sign in to comment.