Skip to content

Commit

Permalink
[9357] Propertly show mail data in new mail tooltip for action mails.
Browse files Browse the repository at this point in the history
Signed-off-by: VladimirMangos <vladimir@getmangos.com>
  • Loading branch information
Kubius@getmangos.com authored and VladimirMangos committed Feb 11, 2010
1 parent d054bf7 commit 5b29d95
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions src/game/Mail.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -747,17 +747,16 @@ void WorldSession::HandleQueryNextMailTime(WorldPacket & /*recv_data*/ )
switch(m->messageType)
{
case MAIL_AUCTION:
data << uint32(2);
data << uint32(2);
data << uint32(m->stationery);
data << uint32(m->sender); // auction house id
data << uint32(MAIL_AUCTION); // message type
break;
default:
data << uint32(0);
data << uint32(0);
data << uint32(m->stationery);
break;
}

data << uint32(m->stationery);
data << uint32(0xC6000000); // float unk, time or something

++count;
Expand Down
2 changes: 1 addition & 1 deletion src/shared/revision_nr.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "9356"
#define REVISION_NR "9357"
#endif // __REVISION_NR_H__

1 comment on commit 5b29d95

@SeTM
Copy link

@SeTM SeTM commented on 5b29d95 Feb 11, 2010

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cool, thx

Please sign in to comment.