diff options
author | Shauren <shauren.trinity@gmail.com> | 2025-05-06 19:22:21 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2025-05-06 19:22:21 +0200 |
commit | a63d404e7bf2dce3b15ce5f66ac98fe71a41f51c (patch) | |
tree | 5c4cd7132a12efddc56494e1b6dbabcc47a50eea /src/server/game/Spells/SpellInfo.cpp | |
parent | f84de77f7d51f67d35945c2f2c3d78c1aaf90a52 (diff) |
Core/Spells: Implemented new SpellMisc field, MinDuration that controls minimum spell missile travel time
Diffstat (limited to 'src/server/game/Spells/SpellInfo.cpp')
-rw-r--r-- | src/server/game/Spells/SpellInfo.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/server/game/Spells/SpellInfo.cpp b/src/server/game/Spells/SpellInfo.cpp index 95432f8f02c..bb27b4c7488 100644 --- a/src/server/game/Spells/SpellInfo.cpp +++ b/src/server/game/Spells/SpellInfo.cpp @@ -1276,6 +1276,7 @@ SpellInfo::SpellInfo(SpellNameEntry const* spellName, ::Difficulty difficulty, S RangeEntry = sSpellRangeStore.LookupEntry(_misc->RangeIndex); Speed = _misc->Speed; LaunchDelay = _misc->LaunchDelay; + MinDuration = _misc->MinDuration; SchoolMask = _misc->SchoolMask; IconFileDataId = _misc->SpellIconFileDataID; ActiveIconFileDataId = _misc->ActiveIconFileDataID; |