Some DLL is telling us to end the level!
| 3561 | |
| 3562 | // Some DLL is telling us to end the level! |
| 3563 | void MultiEndLevel() { |
| 3564 | MULTI_ASSERT(Netgame.local_role == LR_SERVER, NULL); |
| 3565 | SetGameState(GAMESTATE_LVLEND); |
| 3566 | PrintDedicatedMessage(TXT_DS_ENDINGLEVEL); |
| 3567 | Multi_bail_ui_menu = true; |
| 3568 | } |
| 3569 | |
| 3570 | // server is telling us the level has ended |
| 3571 | void MultiDoLevelEnded(uint8_t *data) { |
no test coverage detected