| 184 | |
| 185 | |
| 186 | void cObjective::SendTo(cClientHandle & a_Client) |
| 187 | { |
| 188 | a_Client.SendScoreboardObjective(m_Name, m_DisplayName, 0); |
| 189 | |
| 190 | for (cScoreMap::const_iterator it = m_Scores.begin(); it != m_Scores.end(); ++it) |
| 191 | { |
| 192 | a_Client.SendScoreUpdate(m_Name, it->first, it->second, 0); |
| 193 | } |
| 194 | } |
| 195 | |
| 196 | |
| 197 |
nothing calls this directly
no test coverage detected