Core/PacketIO: Update SMSG_MAIL_QUERY_NEXT_TIME_RESULT for 6.1.0

This commit is contained in:
Vincent-Michael
2015-03-20 21:12:10 +01:00
parent d1b549a23a
commit 844eaae029
2 changed files with 0 additions and 5 deletions

View File

@@ -240,8 +240,6 @@ WorldPackets::Mail::MailQueryNextTimeResult::MailNextTimeEntry::MailNextTimeEntr
{
case MAIL_NORMAL:
SenderGuid = ObjectGuid::Create<HighGuid::Player>(mail->sender);
SenderHint.NativeRealmAddress.Set(GetVirtualRealmAddress());
SenderHint.VirtualRealmAddress.Set(GetVirtualRealmAddress());
break;
case MAIL_AUCTION:
case MAIL_CREATURE:
@@ -264,8 +262,6 @@ WorldPacket const* WorldPackets::Mail::MailQueryNextTimeResult::Write()
for (auto const& entry : Next)
{
_worldPacket << entry.SenderGuid;
_worldPacket << entry.SenderHint;
_worldPacket << float(entry.TimeLeft);
_worldPacket << int32(entry.AltSenderID);
_worldPacket << int8(entry.AltSenderType);

View File

@@ -223,7 +223,6 @@ namespace WorldPackets
MailNextTimeEntry(::Mail const* mail);
ObjectGuid SenderGuid;
Query::PlayerGuidLookupHint SenderHint;
float TimeLeft = 0.0f;
int32 AltSenderID = 0;
int8 AltSenderType = 0;