From e02d043a66b338eeaff1493dcb5cb3b59d627289 Mon Sep 17 00:00:00 2001 From: erysdren Date: Tue, 12 Nov 2024 10:04:25 -0600 Subject: [PATCH] MENU: menu_coop.qc: specify password is optional --- source/menu/menu_coop.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/menu/menu_coop.qc b/source/menu/menu_coop.qc index 912c42d..96e92e6 100644 --- a/source/menu/menu_coop.qc +++ b/source/menu/menu_coop.qc @@ -126,7 +126,7 @@ void() Menu_Coop_Direct = Menu_Button(1, "cdm_serverip", "SERVER IP/ROOM ID", "IP or ID for the Server (typically starts with /)."); Menu_TextInput("cdm_serverip", 1, server_ip, server_ip_cursor); - Menu_Button(2, "cdm_serverpassword", "SERVER PASSWORD", "Password for the Match set by the Host."); + Menu_Button(2, "cdm_serverpassword", "SERVER PASSWORD", "Password for the Match set by the Host (optional)."); Menu_PasswordInput("cdm_serverpassword", 2, server_password, server_password_cursor); Menu_DrawDivider(3);