feat(Core/Spells): Implemented SPELLVALUE_AURA_DURATION. (#8690)

- Closes #8505
This commit is contained in:
UltraNix
2021-10-24 23:06:57 +02:00
committed by GitHub
parent 9c0894ab4a
commit 3cddfb84c1
3 changed files with 33 additions and 10 deletions

View File

@@ -125,10 +125,11 @@ enum SpellValueMod
SPELLVALUE_RADIUS_MOD,
SPELLVALUE_MAX_TARGETS,
SPELLVALUE_AURA_STACK,
SPELLVALUE_AURA_DURATION,
SPELLVALUE_FORCED_CRIT_RESULT
};
typedef std::pair<SpellValueMod, int32> CustomSpellValueMod;
typedef std::pair<SpellValueMod, int32> CustomSpellValueMod;
class CustomSpellValues : public std::vector<CustomSpellValueMod>
{
public: