From 34be113166b120f32e07c58123257e6d2779617f Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 8 May 2014 17:40:00 +1000 Subject: [PATCH] Also don't translate the error --- 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 e486672c8..4ea750ce5 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) { - dprintf(_("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) { - dprintf(_("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