From 2df27e14a835be445a86fcbd7e2cf5982afbbbdd Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Thu, 23 Dec 2021 01:25:03 +0300 Subject: [PATCH] engine: client: make connect command available through stufftext, for future use --- engine/client/cl_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/client/cl_main.c b/engine/client/cl_main.c index b3f8f14d..0cc2790a 100644 --- a/engine/client/cl_main.c +++ b/engine/client/cl_main.c @@ -2921,7 +2921,7 @@ void CL_InitLocal( void ) Cmd_AddCommand ("levelshot", CL_LevelShot_f, "same as \"screenshot\", used for create plaque images" ); Cmd_AddCommand ("saveshot", CL_SaveShot_f, "used for create save previews with LoadGame menu" ); - Cmd_AddRestrictedCommand ("connect", CL_Connect_f, "connect to a server by hostname" ); + Cmd_AddCommand ("connect", CL_Connect_f, "connect to a server by hostname" ); Cmd_AddCommand ("reconnect", CL_Reconnect_f, "reconnect to current level" ); Cmd_AddCommand ("rcon", CL_Rcon_f, "sends a command to the server console (rcon_password and rcon_address required)" );