| 4737 | } |
| 4738 | |
| 4739 | bool CGameContext::IsClientHighBandwidth(int ClientId) const |
| 4740 | { |
| 4741 | // force high bandwidth is not supported for sixup |
| 4742 | return m_apPlayers[ClientId] && !Server()->IsSixup(ClientId) && Server()->IsRconAuthed(ClientId) && |
| 4743 | (m_apPlayers[ClientId]->GetTeam() == TEAM_SPECTATORS || m_apPlayers[ClientId]->IsPaused()); |
| 4744 | } |
| 4745 | |
| 4746 | CUuid CGameContext::GameUuid() const { return m_GameUuid; } |
| 4747 | const char *CGameContext::GameType() const |
no test coverage detected