From 80b4a25b27718466329e3ed3b17b63d298d7b6e3 Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 8 May 2014 05:03:44 +1000 Subject: [PATCH] Don't print CSQC team switch to team 0 failed messages to the client's normal console --- qcsrc/client/Main.qc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qcsrc/client/Main.qc b/qcsrc/client/Main.qc index db99e507f..e486672c8 100644 --- a/qcsrc/client/Main.qc +++ b/qcsrc/client/Main.qc @@ -214,7 +214,7 @@ float SetTeam(entity o, float Team) default: if(GetTeam(Team, false) == world) { - printf(_("trying to switch to unsupported team %d\n"), Team); + dprintf(_("trying to switch to unsupported team %d\n"), Team); Team = NUM_SPECTATOR; } break; @@ -230,7 +230,7 @@ float SetTeam(entity o, float Team) default: if(GetTeam(Team, false) == world) { - printf(_("trying to switch to unsupported team %d\n"), Team); + dprintf(_("trying to switch to unsupported team %d\n"), Team); Team = NUM_SPECTATOR; } break; -- 2.39.2