summaryrefslogtreecommitdiff
path: root/src/net/eathena
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/eathena')
-rw-r--r--src/net/eathena/mailhandler.cpp15
1 files changed, 11 insertions, 4 deletions
diff --git a/src/net/eathena/mailhandler.cpp b/src/net/eathena/mailhandler.cpp
index e40d34e17..effaf9cf2 100644
--- a/src/net/eathena/mailhandler.cpp
+++ b/src/net/eathena/mailhandler.cpp
@@ -219,10 +219,17 @@ void MailHandler::processSetAttachmentAck(Net::MessageIn &msg)
void MailHandler::processDeleteAck(Net::MessageIn &msg)
{
- UNIMPLIMENTEDPACKET;
-
- msg.readInt32("message id");
- msg.readInt16("fail flag");
+ const int mail = msg.readInt32("message id");
+ const int flag = msg.readInt16("fail flag");
+ if (flag)
+ {
+ NotifyManager::notify(NotifyTypes::MAIL_DELETE_ERROR);
+ }
+ else
+ {
+ NotifyManager::notify(NotifyTypes::MAIL_DELETE_OK);
+ mailWindow->removeMail(mail);
+ }
}
void MailHandler::processMailReturn(Net::MessageIn &msg)