From a2c761bee6a3aa7c1fc0181856df7e8deff4bd35 Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Sun, 9 Sep 2012 03:01:49 +0000 Subject: [PATCH] - 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) --- src/c_cmds.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/c_cmds.cpp b/src/c_cmds.cpp index b1f3a1561..f6bd01a20 100644 --- a/src/c_cmds.cpp +++ b/src/c_cmds.cpp @@ -254,7 +254,7 @@ CCMD (chase) else { // 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; Net_WriteByte (DEM_GENERICCHEAT);