aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorariel- <ariel-@users.noreply.github.com>2016-10-29 19:07:26 -0300
committerariel- <ariel-@users.noreply.github.com>2016-10-29 19:07:26 -0300
commita9921a5dd771d1eb059ac49f8355bfa48b5e46a6 (patch)
treef3c883945b60185123adac8c9bfc7f78acd8f6f3
parentc189e27f39f25982f5b9d808b7af0e11f57074ef (diff)
Core/Unit: send original caster in heal packet log
-rw-r--r--src/server/game/Entities/Unit/Unit.cpp2
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 a800f84629d..995a4179421 100644
--- a/src/server/game/Entities/Unit/Unit.cpp
+++ b/src/server/game/Entities/Unit/Unit.cpp
@@ -6581,7 +6581,7 @@ void Unit::SendHealSpellLog(HealInfo& healInfo, bool critical /*= false*/)
// we guess size
WorldPacket data(SMSG_SPELLHEALLOG, 8 + 8 + 4 + 4 + 4 + 4 + 1 + 1);
data << healInfo.GetTarget()->GetPackGUID();
- data << GetPackGUID();
+ data << healInfo.GetHealer()->GetPackGUID();
data << uint32(healInfo.GetSpellInfo()->Id);
data << uint32(healInfo.GetHeal());
data << uint32(healInfo.GetHeal() - healInfo.GetEffectiveHeal());