aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorVincent-Core <Vincent_Michael@gmx.de>2012-04-06 20:25:36 +0200
committerVincent-Core <Vincent_Michael@gmx.de>2012-04-06 20:25:36 +0200
commitd1f8dff47a74fce8f07e612a41c8e5b23ca74990 (patch)
treefd93902ae641c12dd7029a5bcac2a1e059d8430a /src
parentd546a531c310312bd8b5406624f9facdb2ed6b88 (diff)
Core/Spell: Fix Elixir of Minor Fortitude
Diffstat (limited to 'src')
-rwxr-xr-xsrc/server/game/Spells/SpellMgr.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp
index a7fdb04e7b7..55a0dcb0845 100755
--- a/src/server/game/Spells/SpellMgr.cpp
+++ b/src/server/game/Spells/SpellMgr.cpp
@@ -3508,6 +3508,11 @@ void SpellMgr::LoadDbcDataCorrections()
case 40166: // Introspection
case 40167: // Introspection
spellInfo->Attributes |= SPELL_ATTR0_NEGATIVE_1;
+ break;
+ case 2378: // Minor Fortitude
+ spellInfo->manaCost = 0;
+ spellInfo->manaPerSecond = 0;
+ break;
default:
break;
}