diff options
author | ariel- <ariel-@users.noreply.github.com> | 2016-09-02 04:03:27 -0300 |
---|---|---|
committer | ariel- <ariel-@users.noreply.github.com> | 2016-09-02 04:03:27 -0300 |
commit | be8d1136994fd5f0a90b03a52d21c9503857f15f (patch) | |
tree | feaca699ba2fd472c41c8bb095652ca5f9c71d67 /src | |
parent | 7e8a08c3516d8f5e48882a01a2ccdb8881dd8283 (diff) |
Another build fix.
(it was probably better to just revert the commit instead)
Diffstat (limited to 'src')
-rw-r--r-- | src/server/game/Entities/Unit/Unit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Entities/Unit/Unit.cpp b/src/server/game/Entities/Unit/Unit.cpp index d87bb180e82..e9bb3b5b92b 100644 --- a/src/server/game/Entities/Unit/Unit.cpp +++ b/src/server/game/Entities/Unit/Unit.cpp @@ -10301,7 +10301,7 @@ float Unit::GetUnitSpellCriticalChance(Unit* victim, SpellInfo const* spellProto // percent done // only players use intelligence for critical chance computations if (Player* modOwner = GetSpellModOwner()) - modOwner->ApplySpellMod(spellProto->Id, SPELLMOD_CRITICAL_CHANCE, crit_chance, spell); + modOwner->ApplySpellMod(spellProto->Id, SPELLMOD_CRITICAL_CHANCE, crit_chance); // for this types the bonus was already added in GetUnitCriticalChance, do not add twice if (spellProto->DmgClass != SPELL_DAMAGE_CLASS_MELEE && spellProto->DmgClass != SPELL_DAMAGE_CLASS_RANGED) |