| 1135 | NetworkCommandMessage msg; |
| 1136 | msg.type = NCMTBan; |
| 1137 | msg.content.Write(&player, sizeof(int)); |
| 1138 | SendMsg(&msg, NMFGuaranteed); |
| 1139 | } |
| 1140 | |
| 1141 | void NetworkClient::SendUnban(const char* idOrIp) |
| 1142 | { |
| 1143 | NetworkCommandMessage msg; |
| 1144 | msg.type = NCMTUnban; |
| 1145 | msg.content.WriteString(idOrIp); |
| 1146 | SendMsg(&msg, NMFGuaranteed); |
nothing calls this directly
no test coverage detected