Skip to content

Commit

Permalink
engine: fix player move on dedicated servers
Browse files Browse the repository at this point in the history
  • Loading branch information
a1batross committed Feb 2, 2025
1 parent 95af635 commit 11742ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/common/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -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; }
Expand Down

0 comments on commit 11742ef

Please sign in to comment.