From e830ca720610505d3ab818e2142e939a1aa27ece Mon Sep 17 00:00:00 2001 From: Rat Date: Fri, 10 Apr 2009 23:48:44 +0200 Subject: *fix auras (buff/debuff) original patch by Iskander --HG-- branch : trunk --- src/game/Object.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/game/Object.cpp') diff --git a/src/game/Object.cpp b/src/game/Object.cpp index 4a485f9c489..956b327820a 100644 --- a/src/game/Object.cpp +++ b/src/game/Object.cpp @@ -633,7 +633,8 @@ void Object::_BuildValuesUpdate(uint8 updatetype, ByteBuffer * data, UpdateMask if(index == UNIT_FIELD_BYTES_2) { DEBUG_LOG("-- VALUES_UPDATE: Sending '%s' the blue-group-fix from '%s' (flag)", target->GetName(), ((Player*)this)->GetName()); - *data << ( m_uint32Values[ index ] & (UNIT_BYTE2_FLAG_SANCTUARY << 8) ); // this flag is at uint8 offset 1 !! + *data << ( m_uint32Values[ index ] & ((UNIT_BYTE2_FLAG_SANCTUARY | UNIT_BYTE2_FLAG_AURAS | UNIT_BYTE2_FLAG_UNK5) << 8) ); // this flag is at uint8 offset 1 !! + ch = true; } else if(index == UNIT_FIELD_FACTIONTEMPLATE) -- cgit v1.2.3