summaryrefslogtreecommitdiff
path: root/src/net/tmwa/guildhandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-10-17 21:46:53 +0300
committerAndrei Karas <akaras@inbox.ru>2014-10-17 21:46:53 +0300
commitd3db50f7252d6bb1ff65f12c75e1bd6f507b0964 (patch)
tree300a30587aa1e2e8e02e5bd209706d0c90742d62 /src/net/tmwa/guildhandler.cpp
parentffc95a6cb1bf167e08a1a87ebd68c80c9bb06c01 (diff)
downloadplus-d3db50f7252d6bb1ff65f12c75e1bd6f507b0964.tar.gz
plus-d3db50f7252d6bb1ff65f12c75e1bd6f507b0964.tar.bz2
plus-d3db50f7252d6bb1ff65f12c75e1bd6f507b0964.tar.xz
plus-d3db50f7252d6bb1ff65f12c75e1bd6f507b0964.zip
Add static in guildhandler.
Diffstat (limited to 'src/net/tmwa/guildhandler.cpp')
-rw-r--r--src/net/tmwa/guildhandler.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/net/tmwa/guildhandler.cpp b/src/net/tmwa/guildhandler.cpp
index 3e9faa4c8..ed4383205 100644
--- a/src/net/tmwa/guildhandler.cpp
+++ b/src/net/tmwa/guildhandler.cpp
@@ -341,7 +341,7 @@ void GuildHandler::checkMaster() const
MessageOut msg(CMSG_GUILD_CHECK_MASTER);
}
-void GuildHandler::processGuildPositionInfo(Net::MessageIn &msg) const
+void GuildHandler::processGuildPositionInfo(Net::MessageIn &msg)
{
const int guildId = msg.readInt32("guild id");
const int emblem = msg.readInt32("emblem");
@@ -367,7 +367,7 @@ void GuildHandler::processGuildPositionInfo(Net::MessageIn &msg) const
guildTab->loadFromLogFile("#Guild");
if (localPlayer)
localPlayer->addGuild(Ea::taGuild);
- memberList(guildId);
+ guildHandler->memberList(guildId);
}
if (localPlayer)
@@ -380,7 +380,7 @@ void GuildHandler::processGuildPositionInfo(Net::MessageIn &msg) const
emblem, posMode, guildName.c_str());
}
-void GuildHandler::processGuildMemberLogin(Net::MessageIn &msg) const
+void GuildHandler::processGuildMemberLogin(Net::MessageIn &msg)
{
const int accountId = msg.readInt32("account id");
const int charId = msg.readInt32("char id");
@@ -399,7 +399,7 @@ void GuildHandler::processGuildMemberLogin(Net::MessageIn &msg) const
}
}
-void GuildHandler::processGuildExpulsion(Net::MessageIn &msg) const
+void GuildHandler::processGuildExpulsion(Net::MessageIn &msg)
{
msg.skip(2, "len?");
const std::string nick = msg.readString(24, "name?");
@@ -409,7 +409,7 @@ void GuildHandler::processGuildExpulsion(Net::MessageIn &msg) const
processGuildExpulsionContinue(nick);
}
-void GuildHandler::processGuildExpulsionList(Net::MessageIn &msg) const
+void GuildHandler::processGuildExpulsionList(Net::MessageIn &msg)
{
const int length = msg.readInt16("len");
if (length < 4)