From d20a2f7c76a02a4bdd6d9e59051fa857bd4d4e95 Mon Sep 17 00:00:00 2001 From: Micrah <44911744+milestorme@users.noreply.github.com> Date: Sun, 26 May 2019 01:45:22 +1000 Subject: [PATCH] update fix travis error --- src/mod_congratsonlevel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mod_congratsonlevel.cpp b/src/mod_congratsonlevel.cpp index 5df7773..24c5a45 100644 --- a/src/mod_congratsonlevel.cpp +++ b/src/mod_congratsonlevel.cpp @@ -292,7 +292,7 @@ public: // Issue a raid warning to the player std::ostringstream ss2; ss2 << "Congrats on Level " << level << " " << player->GetName() << "! You've been awarded " << money << " gold and a few treasures!"; - player->GetSession()->SendNotification(ss2.str().c_str()); + player->GetSession()->SendNotification(SERVER_MSG_STRING, ss2.str().c_str()); return; }