Compare commits
6 Commits
8d32c338fc
...
b84f4435b0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b84f4435b0 | ||
|
|
f6c4164765 | ||
|
|
ca10c7cbe2 | ||
|
|
82a573699b | ||
|
|
8f30a36823 | ||
|
|
4fc4646d73 |
@ -28,3 +28,4 @@ git clone --depth=1 --branch=master https://github.com/azerothcore/mod-server-au
|
||||
git clone --depth=1 --branch=master https://github.com/azerothcore/mod-transmog.git modules/mod-transmog
|
||||
git clone --depth=1 --branch=main https://github.com/azerothcore/mod-progression-system.git modules/mod-progression-system
|
||||
git clone --depth=1 --branch=master https://github.com/azerothcore/mod-arena-3v3-solo-queue.git modules/mod-arena-3v3-solo-queue
|
||||
git clone --depth=1 --branch=master https://github.com/azerothcore/mod-costumes.git modules/mod-costumes
|
||||
|
||||
@ -64,7 +64,14 @@ enum DruidSpells
|
||||
|
||||
enum DruidIcons
|
||||
{
|
||||
SPELL_ICON_REVITALIZE = 2862
|
||||
SPELL_ICON_REVITALIZE = 2862,
|
||||
SPELL_ICON_FUROR = 210,
|
||||
SPELL_ICON_MOONKINAURA = 46, // SpellId: 24907
|
||||
SPELL_ICON_MASTER_SHAPESHIFTER = 2851, // SpellId: 48421
|
||||
SPELL_ICON_NURTURING_INSTINCT = 2254, // SpellId: 47180
|
||||
SPELL_ICON_FERAL_SWIFTNESS_PASSIVE_2A = 67, // SpellId: 24864
|
||||
SPELL_ICON_LEADER_OF_THE_PACK = 312, //SpellId: 24932
|
||||
SPELL_ICON_TREE_OF_LIFE = 2257 //SpellId: 34123
|
||||
};
|
||||
|
||||
// 1178 - Bear Form (Passive)
|
||||
@ -223,6 +230,24 @@ class spell_dru_omen_of_clarity : public AuraScript
|
||||
if (spellInfo->SpellFamilyName == SPELLFAMILY_DRUID)
|
||||
{
|
||||
// Exclude shapeshifting
|
||||
if (spellInfo->SpellIconID == SPELL_ICON_MOONKINAURA)
|
||||
return false;
|
||||
|
||||
if (spellInfo->SpellIconID == SPELL_ICON_MASTER_SHAPESHIFTER)
|
||||
return false;
|
||||
|
||||
if (spellInfo->SpellIconID == SPELL_ICON_NURTURING_INSTINCT)
|
||||
return false;
|
||||
|
||||
if (spellInfo->SpellIconID == SPELL_ICON_FERAL_SWIFTNESS_PASSIVE_2A)
|
||||
return false;
|
||||
|
||||
if (spellInfo->SpellIconID == SPELL_ICON_LEADER_OF_THE_PACK)
|
||||
return false;
|
||||
|
||||
if (spellInfo->SpellIconID == SPELL_ICON_TREE_OF_LIFE)
|
||||
return false;
|
||||
|
||||
return !spellInfo->HasAura(SPELL_AURA_MOD_SHAPESHIFT);
|
||||
}
|
||||
|
||||
@ -235,6 +260,12 @@ class spell_dru_omen_of_clarity : public AuraScript
|
||||
return false;
|
||||
}
|
||||
|
||||
// Furor 210
|
||||
if (spellInfo->SpellIconID == SPELL_ICON_FUROR)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user