diff options
-rw-r--r-- | src/server/game/Mails/Mail.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/server/game/Mails/Mail.h b/src/server/game/Mails/Mail.h index 11d8cb6442e..8cbdc1fb735 100644 --- a/src/server/game/Mails/Mail.h +++ b/src/server/game/Mails/Mail.h @@ -36,12 +36,13 @@ class Player; enum MailMessageType { - MAIL_NORMAL = 0, - MAIL_AUCTION = 2, - MAIL_CREATURE = 3, // client send CMSG_CREATURE_QUERY on this mailmessagetype - MAIL_GAMEOBJECT = 4, // client send CMSG_GAMEOBJECT_QUERY on this mailmessagetype - MAIL_CALENDAR = 5, - MAIL_BLACKMARKET = 6 + MAIL_NORMAL = 0, + MAIL_AUCTION = 2, + MAIL_CREATURE = 3, // client send CMSG_CREATURE_QUERY on this mailmessagetype + MAIL_GAMEOBJECT = 4, // client send CMSG_GAMEOBJECT_QUERY on this mailmessagetype + MAIL_CALENDAR = 5, + MAIL_BLACKMARKET = 6, + MAIL_COMMERCE_AUCTION = 7 // wow token auction }; enum MailCheckMask |