| 303 | } |
| 304 | |
| 305 | void lgoal::SendMultiUpdate(int handle) { |
| 306 | ASSERT(Game_mode & GM_MULTI && Netgame.local_role == LR_SERVER); |
| 307 | |
| 308 | msafe_struct mstruct; |
| 309 | |
| 310 | mstruct.index = handle; |
| 311 | GetName(mstruct.message, MSAFE_MESSAGE_LENGTH); |
| 312 | mstruct.type = m_flags; |
| 313 | mstruct.count = m_priority; |
| 314 | |
| 315 | msafe_CallFunction(MSAFE_MISC_LEVELGOAL, &mstruct); |
| 316 | } |
| 317 | |
| 318 | bool lgoal::SetCompletionMessage(char *message) { |
| 319 | if (!message) |
nothing calls this directly
no test coverage detected