From 0b8a22d06305d90e96bc6dd758fc5abf0d9a5303 Mon Sep 17 00:00:00 2001 From: tomrus88 Date: Sun, 9 Aug 2009 18:27:01 +0400 Subject: [PATCH] Attempt to fix mail. --- src/game/Mail.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/game/Mail.cpp b/src/game/Mail.cpp index 139302047..b919340d3 100644 --- a/src/game/Mail.cpp +++ b/src/game/Mail.cpp @@ -574,7 +574,7 @@ void WorldSession::HandleMailTakeMoney(WorldPacket & recv_data ) //called when player lists his received mails void WorldSession::HandleGetMailList(WorldPacket & recv_data ) { - CHECK_PACKET_SIZE(recv_data,8); + CHECK_PACKET_SIZE(recv_data, 8); uint64 mailbox; recv_data >> mailbox; @@ -594,6 +594,7 @@ void WorldSession::HandleGetMailList(WorldPacket & recv_data ) uint32 mails_count = 0; // real send to client mails amount WorldPacket data(SMSG_MAIL_LIST_RESULT, (200)); // guess size + data << uint32(0); // 3.2.0 data << uint8(0); // mail's count time_t cur_time = time(NULL);