| 5280 | } |
| 5281 | |
| 5282 | bool CGameContext::PlayerModerating() const |
| 5283 | { |
| 5284 | return std::any_of(std::begin(m_apPlayers), std::end(m_apPlayers), [](const CPlayer *pPlayer) { return pPlayer && pPlayer->m_Moderating; }); |
| 5285 | } |
| 5286 | |
| 5287 | void CGameContext::ForceVote(bool Success) |
| 5288 | { |
no outgoing calls
no test coverage detected