summaryrefslogtreecommitdiff
path: root/src/net/eathena/adminhandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-03-25 13:09:04 +0300
committerAndrei Karas <akaras@inbox.ru>2013-03-25 13:09:04 +0300
commit90a652e5c672b9a11b165ee939889f406b852ee1 (patch)
tree4841dff5271783feb53cd2d5164aea4c2ebf69b7 /src/net/eathena/adminhandler.cpp
parenta306ecf96736779b08d1de7ec994d3d741d5dc61 (diff)
downloadplus-90a652e5c672b9a11b165ee939889f406b852ee1.tar.gz
plus-90a652e5c672b9a11b165ee939889f406b852ee1.tar.bz2
plus-90a652e5c672b9a11b165ee939889f406b852ee1.tar.xz
plus-90a652e5c672b9a11b165ee939889f406b852ee1.zip
improve adminhandler class.
Diffstat (limited to 'src/net/eathena/adminhandler.cpp')
-rw-r--r--src/net/eathena/adminhandler.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/net/eathena/adminhandler.cpp b/src/net/eathena/adminhandler.cpp
index 23909bef1..0b2d91063 100644
--- a/src/net/eathena/adminhandler.cpp
+++ b/src/net/eathena/adminhandler.cpp
@@ -55,12 +55,10 @@ AdminHandler::AdminHandler() :
void AdminHandler::handleMessage(Net::MessageIn &msg)
{
- int id;
switch (msg.getId())
{
case SMSG_ADMIN_KICK_ACK:
- id = msg.readInt32();
- if (id == 0)
+ if (msg.readInt32() == 0)
NotifyManager::notify(NotifyManager::KICK_FAIL);
else
NotifyManager::notify(NotifyManager::KICK_SUCCEED);
@@ -83,13 +81,13 @@ void AdminHandler::localAnnounce(const std::string &text)
outMsg.writeString(text, static_cast<int>(text.length()));
}
-void AdminHandler::hide(bool h A_UNUSED)
+void AdminHandler::hide(const bool h A_UNUSED)
{
MessageOut outMsg(CMSG_ADMIN_HIDE);
outMsg.writeInt32(0); //unused
}
-void AdminHandler::kick(int playerId)
+void AdminHandler::kick(const int playerId)
{
MessageOut outMsg(CMSG_ADMIN_KICK);
outMsg.writeInt32(playerId);