From cc0f12ed2625d40c73ee2e148d35e337630ee3f7 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Wed, 16 Oct 2024 05:57:24 +0300 Subject: [PATCH] engine: client: add stubs for richpresence commands added in HL25 --- engine/client/cl_main.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/engine/client/cl_main.c b/engine/client/cl_main.c index 7beccf58..ebbdf40b 100644 --- a/engine/client/cl_main.c +++ b/engine/client/cl_main.c @@ -3332,6 +3332,9 @@ static void CL_InitLocal( void ) Cmd_AddCommand ("rcon", CL_Rcon_f, "sends a command to the server console (rcon_password and rcon_address required)" ); Cmd_AddCommand ("precache", CL_LegacyPrecache_f, "legacy server compatibility" ); + Cmd_AddCommand( "richpresence_gamemode", Cmd_Null_f, "compatibility command, does nothing" ); + Cmd_AddCommand( "richpresence_update", Cmd_Null_f, "compatibility command, does nothing" ); + } //============================================================================