diff options
author | megamage <none@none> | 2009-08-06 10:38:46 -0500 |
---|---|---|
committer | megamage <none@none> | 2009-08-06 10:38:46 -0500 |
commit | e8330e4162f044b928f26d91e71db986e59978ef (patch) | |
tree | 1a66383fdc99a7fa56bc9c9ff8939bb729cf9e37 /src/game/ObjectMgr.cpp | |
parent | e64592775957c8394ade11e95f851f95827a9ca2 (diff) |
*Update creature damamge formula. Use damage mod in config as total_pct modifier.
--HG--
branch : trunk
Diffstat (limited to 'src/game/ObjectMgr.cpp')
-rw-r--r-- | src/game/ObjectMgr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/ObjectMgr.cpp b/src/game/ObjectMgr.cpp index 7557c23d072..29f75fe6325 100644 --- a/src/game/ObjectMgr.cpp +++ b/src/game/ObjectMgr.cpp @@ -798,7 +798,7 @@ void ObjectMgr::LoadCreatureTemplates() const_cast<CreatureInfo*>(cInfo)->scale = 1.0f; } - //const_cast<CreatureInfo*>(cInfo)->dmg_multiplier *= Creature::_GetDamageMod(cInfo->rank); + const_cast<CreatureInfo*>(cInfo)->dmg_multiplier *= Creature::_GetDamageMod(cInfo->rank); } } |