From 11742efbc3390c72cf674805ddefdeaf04f27f50 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Sun, 2 Feb 2025 08:08:15 +0300 Subject: [PATCH] engine: fix player move on dedicated servers --- engine/common/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/common/common.h b/engine/common/common.h index 750b56c3..ccf1eeea 100644 --- a/engine/common/common.h +++ b/engine/common/common.h @@ -733,7 +733,7 @@ qboolean UI_CreditsActive( void ); int CL_GetMaxClients( void ); #else static inline qboolean CL_Initialized( void ) { return false; } -static inline qboolean CL_IsInGame( void ) { return false; } +static inline qboolean CL_IsInGame( void ) { return true; } // always true for dedicated static inline qboolean CL_IsInConsole( void ) { return false; } static inline qboolean CL_IsIntermission( void ) { return false; } static inline qboolean CL_DisableVisibility( void ) { return false; }