diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-09-25 21:54:31 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-09-25 21:54:31 +0300 |
commit | 9793b9e60f2ca5a163fce8e284d20c36c74ea094 (patch) | |
tree | 2b7c4d9c0762a9bd022fd7c8f014986bb1aafc57 /src/net/eathena/packetsin.inc | |
parent | df0761d02f541723a4d127ef1d252cfa66e6a852 (diff) | |
download | plus-9793b9e60f2ca5a163fce8e284d20c36c74ea094.tar.gz plus-9793b9e60f2ca5a163fce8e284d20c36c74ea094.tar.bz2 plus-9793b9e60f2ca5a163fce8e284d20c36c74ea094.tar.xz plus-9793b9e60f2ca5a163fce8e284d20c36c74ea094.zip |
Add packet SMSG_GUILD_EXPULSION2 0x0a82.
Diffstat (limited to 'src/net/eathena/packetsin.inc')
-rw-r--r-- | src/net/eathena/packetsin.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/net/eathena/packetsin.inc b/src/net/eathena/packetsin.inc index fbc9ee818..194798849 100644 --- a/src/net/eathena/packetsin.inc +++ b/src/net/eathena/packetsin.inc @@ -993,12 +993,14 @@ if (packetVersion >= 20160921) // 20160921 re if (packetVersionRe >= 20160921) { + packet(SMSG_GUILD_EXPULSION2, 0x0a82, 46, &GuildRecv::processGuildExpulsion2, 20160921); packet(SMSG_GUILD_LEAVE2, 0x0a83, 46, &GuildRecv::processGuildLeave2, 20160921); } // 20161019 main if (packetVersionMain >= 20161019) { + packet(SMSG_GUILD_EXPULSION2, 0x0a82, 46, &GuildRecv::processGuildExpulsion2, 20161019); packet(SMSG_GUILD_LEAVE2, 0x0a83, 46, &GuildRecv::processGuildLeave2, 20161019); } @@ -1115,6 +1117,7 @@ if (packets_zero == true) packet(SMSG_PARTY_INFO, 0x0a44, -1, &PartyRecv::processPartyInfo, 20171018); packet(SMSG_PARTY_MEMBER_JOB_LEVEL, 0x0abd, 10, &PartyRecv::processPartyMemberJobLevel, 20171018); packet(SMSG_MVP_EXP, 0x010b, 6, &ChatRecv::processMVPExp, 20171018); + packet(SMSG_GUILD_EXPULSION2, 0x0a82, 46, &GuildRecv::processGuildExpulsion2, 20171018); packet(SMSG_GUILD_LEAVE2, 0x0a83, 46, &GuildRecv::processGuildLeave2, 20171018); } |