From ca99f3f5186a4ee0d0eb63ffef5dc68a12e3af45 Mon Sep 17 00:00:00 2001 From: def Date: Fri, 12 Sep 2014 20:29:02 +0200 Subject: [PATCH] Change 2 more messages --- src/game/server/gamecontext.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game/server/gamecontext.cpp b/src/game/server/gamecontext.cpp index d424b98b3..bd063330e 100644 --- a/src/game/server/gamecontext.cpp +++ b/src/game/server/gamecontext.cpp @@ -680,7 +680,7 @@ void CGameContext::OnTick() else if(m_VoteEnforce == VOTE_ENFORCE_YES_ADMIN) { char aBuf[64]; - str_format(aBuf, sizeof(aBuf),"Vote passed enforced by server administrator"); + str_format(aBuf, sizeof(aBuf),"Vote passed enforced by server moderator"); Console()->ExecuteLine(m_aVoteCommand, m_VoteEnforcer); SendChat(-1, CGameContext::CHAT_ALL, aBuf); EndVote(); @@ -688,7 +688,7 @@ void CGameContext::OnTick() else if(m_VoteEnforce == VOTE_ENFORCE_NO_ADMIN) { char aBuf[64]; - str_format(aBuf, sizeof(aBuf),"Vote failed enforced by server administrator"); + str_format(aBuf, sizeof(aBuf),"Vote failed enforced by server moderator"); EndVote(); SendChat(-1, CGameContext::CHAT_ALL, aBuf); }