Merge branch 'fix-dedi-exitgame' into 'master'

Don't execute exitgame command on dedicated servers

See merge request KartKrew/Kart-Public!359
This commit is contained in:
Indev 2024-09-17 11:13:23 +00:00
commit 156d3808e7

View file

@ -5352,6 +5352,12 @@ void Command_ExitGame_f(void)
{
INT32 i;
if (dedicated)
{
CONS_Printf("This command cannot be used on dedicated server\n");
return;
}
D_QuitNetGame();
CL_Reset();
CV_ClearChangedFlags();