aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2017-08-30 23:35:55 +0200
committerShauren <shauren.trinity@gmail.com>2017-08-30 23:35:55 +0200
commitc2f4a7a17e621ed944ee8e003d7b9ee9b0fca399 (patch)
tree51f49ed4089071d7642a08da7af51db0b1144f25 /src
parentc072cfed799975d210efebbdc689bf7512ec68e4 (diff)
Core/Spells: Removed unexplainable duration limit from SpellInfo::GetMaxTicks
how is a number greater than 30000 200% larger than ...? larger than what
Diffstat (limited to 'src')
-rw-r--r--src/server/game/Spells/SpellInfo.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/server/game/Spells/SpellInfo.cpp b/src/server/game/Spells/SpellInfo.cpp
index 258362a43e2..2a8b98af510 100644
--- a/src/server/game/Spells/SpellInfo.cpp
+++ b/src/server/game/Spells/SpellInfo.cpp
@@ -2560,10 +2560,6 @@ uint32 SpellInfo::GetMaxTicks(uint32 difficulty) const
if (DotDuration == 0)
return 1;
- // 200% limit
- if (DotDuration > 30000)
- DotDuration = 30000;
-
for (SpellEffectInfo const* effect : GetEffectsForDifficulty(difficulty))
{
if (effect && effect->Effect == SPELL_EFFECT_APPLY_AURA)