diff options
Diffstat (limited to 'src/net/eathena/adminhandler.cpp')
-rw-r--r-- | src/net/eathena/adminhandler.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/net/eathena/adminhandler.cpp b/src/net/eathena/adminhandler.cpp index 0208b46d5..ba9551dc1 100644 --- a/src/net/eathena/adminhandler.cpp +++ b/src/net/eathena/adminhandler.cpp @@ -25,6 +25,7 @@ #include "actorspritemanager.h" #include "depricatedevent.h" #include "game.h" +#include "notifymanager.h" #include "playerrelations.h" #include "net/chathandler.h" @@ -63,9 +64,9 @@ void AdminHandler::handleMessage(Net::MessageIn &msg) case SMSG_ADMIN_KICK_ACK: id = msg.readInt32(); if (id == 0) - SERVER_NOTICE(_("Kick failed!")) + NotifyManager::notify(NotifyManager::KICK_FAIL); else - SERVER_NOTICE(_("Kick succeeded!")) + NotifyManager::notify(NotifyManager::KICK_SUCCEED); default: break; } |