summaryrefslogtreecommitdiff
path: root/src/net/eathena/packetsin.inc
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2019-01-24 02:07:42 +0300
committerAndrei Karas <akaras@inbox.ru>2019-01-25 02:39:13 +0300
commita9d0898037feff6d3dce507ff0194fe8582a80a8 (patch)
treec6a4c5bee1acfb06f7d55fd94955a4fac620af7d /src/net/eathena/packetsin.inc
parent2811da7ca1e50f0d0cfcf44c98e78aa118bd9d7f (diff)
downloadManaVerse-a9d0898037feff6d3dce507ff0194fe8582a80a8.tar.gz
ManaVerse-a9d0898037feff6d3dce507ff0194fe8582a80a8.tar.bz2
ManaVerse-a9d0898037feff6d3dce507ff0194fe8582a80a8.tar.xz
ManaVerse-a9d0898037feff6d3dce507ff0194fe8582a80a8.zip
Add packet SMSG_LOGIN_MOBILE_OTP 0x09a2
Diffstat (limited to 'src/net/eathena/packetsin.inc')
-rw-r--r--src/net/eathena/packetsin.inc13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/net/eathena/packetsin.inc b/src/net/eathena/packetsin.inc
index 848e6c221..d701d6e8e 100644
--- a/src/net/eathena/packetsin.inc
+++ b/src/net/eathena/packetsin.inc
@@ -1178,6 +1178,7 @@ if (packets_zero == true)
packet(SMSG_ACHIEVEMENT_GET_REWARD, 0x0a26, 6, &AchievementRecv::processAchievementGetReward, 20171018);
packet(SMSG_ITEM_PREVIEW1, 0x0ab9, 39, &InventoryRecv::processShowItemPreview1, 20171018);
packet(SMSG_LOGIN_OTP, 0x0ad1, -1, &LoginRecv::processLoginOtp1, 20171018);
+ packet(SMSG_LOGIN_MOBILE_OTP, 0x09a2, 6, &LoginRecv::processMobileOtp, 20171018);
}
// 20171019 zero
@@ -1453,6 +1454,18 @@ if (packetVersionRe >= 20181031)
packet(SMSG_PLAYER_SKILL_AUTO_SPELLS, 0x0afb, -1, &SkillRecv::processSkillAutoSpells2, 20181031);
}
+// 20181114 main
+if (packetVersionMain >= 20181114)
+{
+ packet(SMSG_LOGIN_MOBILE_OTP, 0x09a2, 6, &LoginRecv::processMobileOtp, 20181114);
+}
+
+// 20181114 re
+if (packetVersionRe >= 20181114)
+{
+ packet(SMSG_LOGIN_MOBILE_OTP, 0x09a2, 6, &LoginRecv::processMobileOtp, 20181114);
+}
+
// 20181128 main
if (packetVersionMain >= 20181128)
{