44 lines
1.4 KiB
C++
44 lines
1.4 KiB
C++
/*
|
|
* Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License as published by the
|
|
* Free Software Foundation; either version 2 of the License, or (at your
|
|
* option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
* more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "CombatLogPackets.h"
|
|
#include "SpellPackets.h"
|
|
|
|
WorldPacket const* WorldPackets::CombatLog::SpellNonMeleeDamageLog::Write()
|
|
{
|
|
_worldPacket << Me;
|
|
_worldPacket << CasterGUID;
|
|
_worldPacket << SpellID;
|
|
_worldPacket << Damage;
|
|
_worldPacket << Overkill;
|
|
_worldPacket << SchoolMask;
|
|
_worldPacket << ShieldBlock;
|
|
_worldPacket << Resisted;
|
|
_worldPacket << Absorbed;
|
|
|
|
_worldPacket.WriteBit(Periodic);
|
|
_worldPacket.WriteBits(Flags, 9);
|
|
_worldPacket.WriteBit(false); // Debug info
|
|
_worldPacket.WriteBit(LogData.HasValue);
|
|
_worldPacket.FlushBits();
|
|
|
|
if (LogData.HasValue)
|
|
_worldPacket << LogData.Value;
|
|
|
|
return &_worldPacket;
|
|
}
|