diff --git a/src/game/server/gamecontext.cpp b/src/game/server/gamecontext.cpp index eb5d69b6e..7193c8057 100644 --- a/src/game/server/gamecontext.cpp +++ b/src/game/server/gamecontext.cpp @@ -3140,6 +3140,8 @@ void CGameContext::ConRandomUnfinishedMap(IConsole::IResult *pResult, void *pUse CGameContext *pSelf = (CGameContext *)pUserData; int Stars = pResult->NumArguments() ? pResult->GetInteger(0) : -1; + if(pResult->m_ClientId != -1) + pSelf->m_VoteCreator = pResult->m_ClientId; pSelf->m_pScore->RandomUnfinishedMap(pSelf->m_VoteCreator, Stars); }