mirror of
https://github.com/mangosfour/server.git
synced 2025-12-21 19:37:02 +00:00
Fixed some opcodes
This commit is contained in:
parent
42a8ae3752
commit
ffca6c8c57
9 changed files with 74 additions and 62 deletions
|
|
@ -3042,7 +3042,7 @@ void Aura::HandleModPossess(bool apply, bool Real)
|
|||
|
||||
if(caster->GetTypeId() == TYPEID_PLAYER)
|
||||
{
|
||||
WorldPacket data(SMSG_PET_SPELLS, 8);
|
||||
WorldPacket data(SMSG_PET_SPELLS, 8+4);
|
||||
data << uint64(0);
|
||||
data << uint32(0);
|
||||
((Player*)caster)->GetSession()->SendPacket(&data);
|
||||
|
|
@ -3198,7 +3198,7 @@ void Aura::HandleModCharm(bool apply, bool Real)
|
|||
|
||||
if(caster->GetTypeId() == TYPEID_PLAYER)
|
||||
{
|
||||
WorldPacket data(SMSG_PET_SPELLS, 8);
|
||||
WorldPacket data(SMSG_PET_SPELLS, 8+4);
|
||||
data << uint64(0);
|
||||
data << uint32(0);
|
||||
((Player*)caster)->GetSession()->SendPacket(&data);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue