From 996fcc967f05e304cc0e51bb4e0dd2d5a0de17c9 Mon Sep 17 00:00:00 2001 From: maximius Date: Fri, 11 Sep 2009 15:39:36 -0700 Subject: [PATCH] *[8472] Fixed argument for KilledMonsterCredit call. Author: ApoC --HG-- branch : trunk --- src/game/SpellEffects.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)