Freecam pause exception

This commit is contained in:
NepDisk 2025-04-01 20:47:02 -04:00
parent 104bfaa7fe
commit 79e81564c4

View file

@ -999,7 +999,7 @@ void G_BuildTiccmd(ticcmd_t *cmd, INT32 realtics, UINT8 ssplayer)
// why build a ticcmd if we're paused?
// Or, for that matter, if we're being reborn.
if (paused || P_AutoPause() || (gamestate == GS_LEVEL && player->playerstate == PST_REBORN))
if (!thiscam->freecam && (paused || P_AutoPause() || (gamestate == GS_LEVEL && player->playerstate == PST_REBORN)))
{
return;
}