diff options
Diffstat (limited to 'src/net/ea/gamehandler.cpp')
-rw-r--r-- | src/net/ea/gamehandler.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/net/ea/gamehandler.cpp b/src/net/ea/gamehandler.cpp index 3d7da6247..afebc93a1 100644 --- a/src/net/ea/gamehandler.cpp +++ b/src/net/ea/gamehandler.cpp @@ -24,7 +24,6 @@ #include "client.h" #include "game.h" -#include "notifications.h" #include "notifymanager.h" #include "being/localplayer.h" @@ -33,6 +32,10 @@ #include "net/messagein.h" +#include "resources/notifytypes.h" + +#include "utils/gettext.h" + #include "debug.h" namespace Ea @@ -73,7 +76,7 @@ void GameHandler::processMapLogin(Net::MessageIn &msg) const void GameHandler::processWhoAnswer(Net::MessageIn &msg) const { - NotifyManager::notify(NotifyManager::ONLINE_USERS, msg.readInt32()); + NotifyManager::notify(NotifyTypes::ONLINE_USERS, msg.readInt32()); } void GameHandler::processCharSwitchResponse(Net::MessageIn &msg) const |