diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index fe1e43ea9..21ba60b76 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -1192,6 +1192,15 @@ void Spell::EffectDummy(SpellEffectIndex eff_idx) return; } + case 32146: // Liquid Fire + { + if (!unitTarget || unitTarget->GetTypeId() != TYPEID_UNIT || m_caster->GetTypeId() != TYPEID_PLAYER) + return; + + ((Player*)m_caster)->KilledMonsterCredit(unitTarget->GetEntry(), unitTarget->GetObjectGuid()); + ((Creature*)unitTarget)->ForcedDespawn(); + return; + } case 33060: // Make a Wish { if (m_caster->GetTypeId()!=TYPEID_PLAYER) diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index f83afa0b8..d3fbc9461 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "11340" + #define REVISION_NR "11341" #endif // __REVISION_NR_H__