diff options
Diffstat (limited to 'src/net/eathena/packetsout.inc')
-rw-r--r-- | src/net/eathena/packetsout.inc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/net/eathena/packetsout.inc b/src/net/eathena/packetsout.inc index 29e741669..4c996253c 100644 --- a/src/net/eathena/packetsout.inc +++ b/src/net/eathena/packetsout.inc @@ -321,6 +321,7 @@ packet(CMSG_CHECK_NAME, 0x0000, 0, nullptr); packet(CMSG_MAIL2_OPEN_WRITE_MAIL, 0x0000, 0, nullptr); packet(CMSG_MAIL2_ADD_ITEM_TO_MAIL, 0x0000, 0, nullptr); packet(CMSG_MAIL2_REMOVE_ITEM_MAIL, 0x0000, 0, nullptr); +packet(CMSG_MAIL2_SEND_MAIL, 0x0000, 0, nullptr); #else // 20040713 if (packetVersion >= 20040713) @@ -1205,6 +1206,10 @@ if (packetVersion >= 20131230) packet(CMSG_STORAGE_PASSWORD, 0x091d, 36, clif->pStoragePassword); packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x022d, -1, clif->pItemListWindowSelected); } +if (packetVersion >= 20131230) +{ + packet(CMSG_MAIL2_SEND_MAIL, 0x09ec, -1, clif->pRodexSendMail); +} // 20140115 if (packetVersion >= 20140115) @@ -2647,6 +2652,11 @@ if (packetVersion == 20160330) packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest); } +if (packetVersion >= 20160330) +{ + packet(CMSG_MAIL2_SEND_MAIL, 0x0a6e, -1, clif->pRodexSendMail); +} + // 20160420 if (packetVersion == 20160420) { |