From 4cebb3880c73c4500f6e1ec65bcda04856408832 Mon Sep 17 00:00:00 2001 From: sanctum32 Date: Mon, 21 Oct 2013 08:04:44 +0300 Subject: [PATCH] =?UTF-8?q?[12696]=20Fix=20guid=20sent=20in=20SMSG=5FPLAYE?= =?UTF-8?q?RBOUND,=20it=20should=20be=20caster's=20gui=E2=80=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit …d, not player's (original author @Shauren) --- src/game/SpellEffects.cpp | 2 +- src/shared/revision_nr.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index 26c77eaaa..89df0d8d7 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -10392,7 +10392,7 @@ void Spell::EffectBind(SpellEffectEntry const* effect) // zone update data.Initialize(SMSG_PLAYERBOUND, 8 + 4); - data << player->GetObjectGuid(); + data << m_caster->GetObjectGuid(); data << uint32(area_id); player->SendDirectMessage(&data); } diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index af1281970..25abc46b9 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 "12695" + #define REVISION_NR "12696" #endif // __REVISION_NR_H__