From 8f81f57ce77a316f6e409091d6b2d20123b809ec Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Sun, 9 Sep 2012 03:07:41 +0000 Subject: [PATCH] - Don't notify when other players use the chasecam in deathmatch. SVN r3869 (trunk) --- src/m_cheat.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/m_cheat.cpp b/src/m_cheat.cpp index 45ec78d9f..4249fea5c 100644 --- a/src/m_cheat.cpp +++ b/src/m_cheat.cpp @@ -519,8 +519,8 @@ void cht_DoCheat (player_t *player, int cheat) if (player == &players[consoleplayer]) Printf ("%s\n", msg); - else - Printf ("%s is a cheater: %s\n", player->userinfo.netname, msg); + else if (cheat != CHT_CHASECAM) + Printf ("%s cheats: %s\n", player->userinfo.netname, msg); } const char *cht_Morph (player_t *player, const PClass *morphclass, bool quickundo)