| 54 | } |
| 55 | |
| 56 | bool ToggleChatIgnore(int playerId) |
| 57 | { |
| 58 | std::lock_guard<std::mutex> lk(g_lock); |
| 59 | if (g_ignoredChat.erase(playerId) != 0) |
| 60 | return false; |
| 61 | g_ignoredChat.insert(playerId); |
| 62 | return true; |
| 63 | } |
| 64 | |
| 65 | void SetVoiceMutedAll(bool muted) |
| 66 | { |
no outgoing calls
no test coverage detected