From 5b8c92a15a877bc05812c091ca1841cacf989f30 Mon Sep 17 00:00:00 2001
From: Andrei Karas <akaras@inbox.ru>
Date: Sat, 26 Aug 2017 01:15:03 +0300
Subject: Add support for mail deletion.

---
 src/net/eathena/mail2recv.cpp | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

(limited to 'src/net')

diff --git a/src/net/eathena/mail2recv.cpp b/src/net/eathena/mail2recv.cpp
index e3dc5b9da..32d4f76c6 100644
--- a/src/net/eathena/mail2recv.cpp
+++ b/src/net/eathena/mail2recv.cpp
@@ -444,9 +444,14 @@ void Mail2Recv::processReadMail(Net::MessageIn &msg)
 
 void Mail2Recv::processMailDelete(Net::MessageIn &msg)
 {
-    UNIMPLEMENTEDPACKET;
     msg.readUInt8("open type");
-    msg.readInt64("mail id");
+    const int64_t mailId = msg.readInt64("mail id");
+    if (mailWindow == nullptr)
+    {
+        reportAlways("Mail window not created.");
+        return;
+    }
+    mailWindow->removeMail(mailId);
 }
 
 void Mail2Recv::processRequestMoney(Net::MessageIn &msg)
-- 
cgit v1.2.3-70-g09d2