aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormaximius <none@none>2009-09-11 15:39:36 -0700
committermaximius <none@none>2009-09-11 15:39:36 -0700
commit996fcc967f05e304cc0e51bb4e0dd2d5a0de17c9 (patch)
tree167d8312470a77dcaa4620b2c90c1aad2892907e
parentbb3522355dbcf38cb3ef2e45e48ba03cd9837fea (diff)
*[8472] Fixed argument for KilledMonsterCredit call. Author: ApoC
--HG-- branch : trunk
-rw-r--r--src/game/SpellEffects.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp
index 89fb9e88c8a..f8f7fd8a6e6 100644
--- a/src/game/SpellEffects.cpp
+++ b/src/game/SpellEffects.cpp
@@ -6881,7 +6881,7 @@ void Spell::EffectKillCreditPersonal(uint32 i)
if(!unitTarget || unitTarget->GetTypeId() != TYPEID_PLAYER)
return;
- ((Player*)unitTarget)->KilledMonsterCredit(m_spellInfo->EffectMiscValue[i], unitTarget);
+ ((Player*)unitTarget)->KilledMonsterCredit(m_spellInfo->EffectMiscValue[i], 0);
}
void Spell::EffectKillCredit(uint32 i)