From 74136eec9795d339421a569b774dd8486662e93e Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Tue, 7 Oct 2014 01:07:41 +0300 Subject: eathena: fix packet SMSG_GUILD_MEMBER_LOGIN 0x01f2. --- src/net/eathena/guildhandler.cpp | 6 ++++++ src/net/eathena/protocol.h | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/net/eathena/guildhandler.cpp b/src/net/eathena/guildhandler.cpp index 3d6fb2d19..51ff00cce 100644 --- a/src/net/eathena/guildhandler.cpp +++ b/src/net/eathena/guildhandler.cpp @@ -394,12 +394,18 @@ void GuildHandler::processGuildMemberLogin(Net::MessageIn &msg) const const int accountId = msg.readInt32("account id"); const int charId = msg.readInt32("char id"); const int online = msg.readInt32("flag"); + const Gender::Type gender = Being::intToGender(static_cast( + msg.readInt16("sex"))); + msg.readInt16("hair"); + msg.readInt16("hair color"); if (Ea::taGuild) { GuildMember *const m = Ea::taGuild->getMember(accountId, charId); if (m) { m->setOnline(online); + if (online) + m->setGender(gender); if (Ea::guildTab) Ea::guildTab->showOnline(m->getName(), online); if (socialWindow) diff --git a/src/net/eathena/protocol.h b/src/net/eathena/protocol.h index 77e963fdb..db6a7d1eb 100644 --- a/src/net/eathena/protocol.h +++ b/src/net/eathena/protocol.h @@ -190,7 +190,7 @@ #define SMSG_GUILD_CREATE_RESPONSE 0x0167 #define SMSG_GUILD_POSITION_INFO 0x016c -#define SMSG_GUILD_MEMBER_LOGIN 0x016d +#define SMSG_GUILD_MEMBER_LOGIN 0x01f2 #define SMSG_GUILD_MASTER_OR_MEMBER 0x014e #define SMSG_GUILD_BASIC_INFO 0x01b6 #define SMSG_GUILD_ALIANCE_INFO 0x014c -- cgit v1.2.3-70-g09d2