mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-12-01 08:31:14 +00:00
- The chasecam is now only considered a cheat for deathmatch mode. (For that, there is still
the sv_chasecam flag in dmflags2.) SVN r3868 (trunk)
This commit is contained in:
parent
9f3a93bfd2
commit
a2c761bee6
1 changed files with 1 additions and 1 deletions
|
@ -254,7 +254,7 @@ CCMD (chase)
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
// Check if we're allowed to use chasecam.
|
// Check if we're allowed to use chasecam.
|
||||||
if (gamestate != GS_LEVEL || (!(dmflags2 & DF2_CHASECAM) && CheckCheatmode ()))
|
if (gamestate != GS_LEVEL || (!(dmflags2 & DF2_CHASECAM) && deathmatch && CheckCheatmode ()))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
Net_WriteByte (DEM_GENERICCHEAT);
|
Net_WriteByte (DEM_GENERICCHEAT);
|
||||||
|
|
Loading…
Reference in a new issue