From e9bc345051d3c5d9604881a84714892ec8d4b0aa Mon Sep 17 00:00:00 2001 From: Roman Fomin Date: Sun, 31 Jan 2021 01:23:31 +0700 Subject: [PATCH] Fix pistolstart check for demo recording (#120) --- Source/g_game.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/g_game.c b/Source/g_game.c index bc934b93..01436c5b 100644 --- a/Source/g_game.c +++ b/Source/g_game.c @@ -697,7 +697,7 @@ static void G_DoLoadLevel(void) // [crispy] pistol start if (pistolstart) { - if (!netgame) + if (!demorecording && !demoplayback && !netgame) { G_PlayerReborn(0); }