Change 2 more messages

This commit is contained in:
def 2014-09-12 20:29:02 +02:00
parent 3ea1bab617
commit ca99f3f518

View file

@ -680,7 +680,7 @@ void CGameContext::OnTick()
else if(m_VoteEnforce == VOTE_ENFORCE_YES_ADMIN) else if(m_VoteEnforce == VOTE_ENFORCE_YES_ADMIN)
{ {
char aBuf[64]; 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); Console()->ExecuteLine(m_aVoteCommand, m_VoteEnforcer);
SendChat(-1, CGameContext::CHAT_ALL, aBuf); SendChat(-1, CGameContext::CHAT_ALL, aBuf);
EndVote(); EndVote();
@ -688,7 +688,7 @@ void CGameContext::OnTick()
else if(m_VoteEnforce == VOTE_ENFORCE_NO_ADMIN) else if(m_VoteEnforce == VOTE_ENFORCE_NO_ADMIN)
{ {
char aBuf[64]; 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(); EndVote();
SendChat(-1, CGameContext::CHAT_ALL, aBuf); SendChat(-1, CGameContext::CHAT_ALL, aBuf);
} }