From 41f0628654eb23b5e13360dd556e0bfc4a103147 Mon Sep 17 00:00:00 2001 From: terencehill Date: Mon, 9 Apr 2012 21:17:25 +0200 Subject: [PATCH] Fix command cl_cmd hud scoreboard_columns_set showing the error "unknown score field: 'scoreboard_columns_set'" --- qcsrc/client/scoreboard.qc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qcsrc/client/scoreboard.qc b/qcsrc/client/scoreboard.qc index e828a17d5..dcc18c48b 100644 --- a/qcsrc/client/scoreboard.qc +++ b/qcsrc/client/scoreboard.qc @@ -339,9 +339,9 @@ void Cmd_HUD_SetFields(float argc) hud_num_fields = 0; - hud_fontsize = HUD_GetFontsize("hud_fontsize"); + hud_fontsize = HUD_GetFontsize("hud_fontsize"); - for(i = 0; i < argc - 1; ++i) + for(i = 1; i < argc - 1; ++i) { float nocomplain; str = argv(i+1); -- 2.39.2