diff options
-rw-r--r-- | src/server/game/Spells/SpellInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Spells/SpellInfo.cpp b/src/server/game/Spells/SpellInfo.cpp index ef66c6886b4..28ac49fde1f 100644 --- a/src/server/game/Spells/SpellInfo.cpp +++ b/src/server/game/Spells/SpellInfo.cpp @@ -514,7 +514,7 @@ int32 SpellEffectInfo::CalcValue(Unit const* caster /*= nullptr*/, int32 const* *variance = valueVariance; } - basePoints = int32(value); + basePoints = int32(round(value)); if (Scaling.ResourceCoefficient) comboDamage = Scaling.ResourceCoefficient * value; |