diff options
author | Andrei Karas <akaras@inbox.ru> | 2019-01-26 00:09:51 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2019-01-26 00:09:51 +0300 |
commit | b6d97f404432d9cf6c84538c4d5f6f14e078ade3 (patch) | |
tree | 10339eb71797c794fa6ebd5e6371d1bb1494353a /src/net/eathena/packetsout.inc | |
parent | 4e2ceec09d767063ade469e6cb810a06d1e6249d (diff) | |
download | plus-b6d97f404432d9cf6c84538c4d5f6f14e078ade3.tar.gz plus-b6d97f404432d9cf6c84538c4d5f6f14e078ade3.tar.bz2 plus-b6d97f404432d9cf6c84538c4d5f6f14e078ade3.tar.xz plus-b6d97f404432d9cf6c84538c4d5f6f14e078ade3.zip |
Add packet CMSG_CAMERA_INFO 0x0a77
Diffstat (limited to 'src/net/eathena/packetsout.inc')
-rw-r--r-- | src/net/eathena/packetsout.inc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/net/eathena/packetsout.inc b/src/net/eathena/packetsout.inc index ca3b0b2d4..7bb87d36d 100644 --- a/src/net/eathena/packetsout.inc +++ b/src/net/eathena/packetsout.inc @@ -352,6 +352,7 @@ packet(CMSG_INVENTORY_EXPAND_REJECT, 0x0000, 0, nullptr); packet(CMSG_SKILL_USE_BEING_START, 0x0000, 0, nullptr); packet(CMSG_SKILL_USE_BEING_STOP, 0x0000, 0, nullptr); packet(CMSG_NPC_BARTER_CLOSE, 0x0000, 0, nullptr); +packet(CMSG_CAMERA_INFO, 0x0000, 0, nullptr); #else // 20040713 if (packetVersion >= 20040713) @@ -1377,6 +1378,12 @@ if (packetVersion >= 20160330) packet(CMSG_MAIL2_SEND_MAIL, 0x0a6e, -1, clif->pRodexSendMail); } +// 20160525 +if (packetVersion >= 20160525) +{ + packet(CMSG_CAMERA_INFO, 0x0a77, 15, clif->pCameraInfo); +} + // 20170419 if (packetVersion >= 20170419) { |