diff options
| author | tobmaps <spambot42@yandex.ru> | 2011-06-10 18:15:09 +0700 |
|---|---|---|
| committer | tobmaps <spambot42@yandex.ru> | 2011-06-10 18:15:09 +0700 |
| commit | dfc92ef59e83352e988cb69f3c0c89afa80ec436 (patch) | |
| tree | b983bcc3f645d187c5c50887e7e67650be7e2357 /src/server/game/Spells/SpellMgr.cpp | |
| parent | 3a5e3e71a4d10ddbe225abe1404e0c88654f59dc (diff) | |
Core/Spells: Fix more spells that make damage from percent of health
Diffstat (limited to 'src/server/game/Spells/SpellMgr.cpp')
| -rwxr-xr-x | src/server/game/Spells/SpellMgr.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp index 1eb1f419f85..f84271778b7 100755 --- a/src/server/game/Spells/SpellMgr.cpp +++ b/src/server/game/Spells/SpellMgr.cpp @@ -4021,7 +4021,7 @@ void SpellMgr::LoadSpellCustomAttr() case 63024: // Gravity Bomb case 64234: // Gravity Bomb (25m) spellInfo->MaxAffectedTargets = 1; - count++; + ++count; break; case 62834: // Boom // This hack is here because we suspect our implementation of spell effect execution on targets @@ -4251,7 +4251,7 @@ void SpellMgr::LoadEnchantCustomAttr() if (!ench) continue; mEnchantCustomAttr[enchId] = true; - count++; + ++count; break; } } |
