Fix pistolstart check for demo recording (#120)

This commit is contained in:
Roman Fomin 2021-01-31 01:23:31 +07:00 committed by GitHub
parent 342d445641
commit e9bc345051
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -697,7 +697,7 @@ static void G_DoLoadLevel(void)
// [crispy] pistol start
if (pistolstart)
{
if (!netgame)
if (!demorecording && !demoplayback && !netgame)
{
G_PlayerReborn(0);
}