mirror of
https://github.com/mangosfour/server.git
synced 2025-12-17 16:37:00 +00:00
[12164] Fix inspect honor kill stats, arena stats.
Fix SMSG_NOTIFICATION structure Move back Updatehonorfields, too fastly removed Define some pvp opcodes Signed-off-by: Yaki Khadafi <elsoldollo@gmail.com>
This commit is contained in:
parent
f911964642
commit
4dcb91df9f
16 changed files with 128 additions and 24 deletions
|
|
@ -818,3 +818,14 @@ void WorldSession::HandleReportPvPAFK(WorldPacket& recv_data)
|
|||
|
||||
reportedPlayer->ReportedAfkBy(_player);
|
||||
}
|
||||
|
||||
void WorldSession::HandleRequestPvPOptionsEnabled(WorldPacket& recv_data)
|
||||
{
|
||||
// null packet
|
||||
|
||||
WorldPacket data(SMSG_PVP_OPTIONS_ENABLED, 1);
|
||||
for (int i = 0; i < 5; ++i)
|
||||
data.WriteBit(true);
|
||||
|
||||
SendPacket(&data);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue