summaryrefslogtreecommitdiff
path: root/src/net/eathena/guildrecv.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/eathena/guildrecv.cpp')
-rw-r--r--src/net/eathena/guildrecv.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/net/eathena/guildrecv.cpp b/src/net/eathena/guildrecv.cpp
index b82fd25c6..62577e7b8 100644
--- a/src/net/eathena/guildrecv.cpp
+++ b/src/net/eathena/guildrecv.cpp
@@ -36,6 +36,7 @@
#include "gui/widgets/tabs/chat/guildtab.h"
+#include "net/beinghandler.h"
#include "net/messagein.h"
#include "net/eathena/guildhandler.h"
@@ -208,7 +209,6 @@ void GuildRecv::processGuildMemberList(Net::MessageIn &msg)
if (msg.getVersion() >= 20161026)
{
guildSize = 34;
- reportAlways("missing guild member names")
}
else
{
@@ -247,7 +247,11 @@ void GuildRecv::processGuildMemberList(Net::MessageIn &msg)
else
{
msg.readInt32("last login"); // for now unused
- continue;
+ name = actorManager->findCharById(charId);
+ if (name.empty())
+ {
+ beingHandler->requestNameByCharId(charId);
+ }
}
GuildMember *const m = taGuild->addMember(id, charId, name);