summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/net/ea/guildrecv.cpp5
-rw-r--r--src/net/eathena/beingrecv.cpp6
2 files changed, 11 insertions, 0 deletions
diff --git a/src/net/ea/guildrecv.cpp b/src/net/ea/guildrecv.cpp
index f952ae2d2..cb8b9394d 100644
--- a/src/net/ea/guildrecv.cpp
+++ b/src/net/ea/guildrecv.cpp
@@ -453,6 +453,11 @@ void GuildRecv::processGuildMessage(Net::MessageIn &msg)
guildTab->chatLog(chatMsg, ChatMsgType::BY_SERVER);
}
}
+ else
+ {
+ DEBUGLOGSTR("invisible guild?");
+ msg.readString(msgLength, "message");
+ }
}
void GuildRecv::processGuildSkillUp(Net::MessageIn &msg)
diff --git a/src/net/eathena/beingrecv.cpp b/src/net/eathena/beingrecv.cpp
index a3758e718..b2738a263 100644
--- a/src/net/eathena/beingrecv.cpp
+++ b/src/net/eathena/beingrecv.cpp
@@ -1299,6 +1299,12 @@ void BeingRecv::processPlayerGuilPartyInfo(Net::MessageIn &msg)
dstBeing->setGuildPos(msg.readString(24, "guild pos"));
dstBeing->addToCache();
}
+ else
+ {
+ msg.readString(24, "party name");
+ msg.readString(24, "guild name");
+ msg.readString(24, "guild pos");
+ }
BLOCK_END("BeingRecv::processPlayerGuilPartyInfo")
}