From 6a8c99eef16b7422d61a64cdfadf148f5eaf46f5 Mon Sep 17 00:00:00 2001 From: FlaminSarge Date: Sat, 26 May 2012 18:25:28 -0400 Subject: [PATCH] Fixed client console vote output missing newlines (bug 5205, r=psychonic). --- core/MenuVoting.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/MenuVoting.cpp b/core/MenuVoting.cpp index fe29c593..0a873b67 100644 --- a/core/MenuVoting.cpp +++ b/core/MenuVoting.cpp @@ -560,7 +560,7 @@ void VoteMenuHandler::OnMenuSelect(IBaseMenu *menu, int client, unsigned int ite if (sm_vote_client_console.GetBool()) { - engine->ClientPrintf(pPlayer->GetEdict(), buffer); + ClientConsolePrint(pPlayer->GetEdict(), buffer); } } }