Changeset 3159

Show
Ignore:
Timestamp:
02/07/2010 03:07:48 PM (7 months ago)
Author:
jackpoz
Message:

FIXED: Setting a raid target icon stops WoW from responding, thanks Attemptor.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/arcemu-world/GroupHandler.cpp

    r3134 r3159  
    439439                // setting icon 
    440440                WorldPacket data(MSG_RAID_TARGET_UPDATE, 10); 
    441                 data << uint8(0) << icon << guid; 
     441                data << uint8(0); 
     442                data << icon; 
     443                data << uint64(GetPlayer()->GetGUID()); 
     444                data << guid; 
    442445                pGroup->SendPacketToAll(&data); 
    443446