| 1426 | msg.type = NCMTMission; |
| 1427 | msg.content.WriteString(mission); |
| 1428 | msg.content.Write(&cadetMode, sizeof(bool)); |
| 1429 | SendMsg(&msg, NMFGuaranteed); |
| 1430 | } |
| 1431 | _selectMission = false; |
| 1432 | _voteMission = false; |
| 1433 | } |
| 1434 | |
| 1435 | void NetworkClient::VoteMission(RString mission, bool cadetMode) |
| 1436 | { |
| 1437 | NetworkCommandMessage msg; |
| 1438 | msg.type = NCMTVote; |
| 1439 | int subtype = NCMTMission; |
| 1440 | msg.content.Write(&subtype, sizeof(int)); |
| 1441 | msg.content.WriteString(mission); |
| 1442 | msg.content.Write(&cadetMode, sizeof(bool)); |
nothing calls this directly
no test coverage detected