Called when the player hit the Multiplayer message key. Puts the player in input mode, or if already inputting resets the hud input message.
| 704 | // Called when the player hit the Multiplayer message key. |
| 705 | // Puts the player in input mode, or if already inputting resets the hud input message. |
| 706 | void StartHUDInputMessage() { |
| 707 | HudInputMessage[0] = 0; |
| 708 | Doing_input_message = HUD_MESSAGE_GENERAL; |
| 709 | HudInputMessageLen = 0; |
| 710 | SuspendControls(); |
| 711 | MultiSendRequestTypeIcon(true); |
| 712 | } |
| 713 | |
| 714 | // Called when the player hits the Multiplayer team-message key. |
| 715 | // Puts the player in input mode, or if already inputting resets the hud input message. |
no test coverage detected