summaryrefslogtreecommitdiff
path: root/src/net/eathena/charserverhandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/eathena/charserverhandler.cpp')
-rw-r--r--src/net/eathena/charserverhandler.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/net/eathena/charserverhandler.cpp b/src/net/eathena/charserverhandler.cpp
index 9d3ed3abc..28a311c81 100644
--- a/src/net/eathena/charserverhandler.cpp
+++ b/src/net/eathena/charserverhandler.cpp
@@ -93,6 +93,7 @@ CharServerHandler::CharServerHandler() :
SMSG_CHAR_RENAME,
SMSG_CHAR_CHANGE_SLOT,
SMSG_CHAR_CAPTCHA_NOT_SUPPORTED,
+ SMSG_CHAR_DELETE2_ACK,
0
};
handledMessages = _messages;
@@ -159,6 +160,10 @@ void CharServerHandler::handleMessage(Net::MessageIn &msg)
processCharCaptchaNotSupported(msg);
break;
+ case SMSG_CHAR_DELETE2_ACK:
+ processCharDelete2Ack(msg);
+ break;
+
default:
break;
}
@@ -639,4 +644,12 @@ void CharServerHandler::processCharCaptchaNotSupported(Net::MessageIn &msg)
msg.readUInt8("1");
}
+void CharServerHandler::processCharDelete2Ack(Net::MessageIn &msg)
+{
+ UNIMPLIMENTEDPACKET;
+ msg.readInt32("char id");
+ msg.readInt32("result");
+ msg.readInt32("time");
+}
+
} // namespace EAthena