]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
accidentally used scoreboard panel names for cvars in strafehud code
authorJuhu <5894800-Juhu_@users.noreply.gitlab.com>
Tue, 2 Jun 2020 21:34:06 +0000 (23:34 +0200)
committerJuhu <5894800-Juhu_@users.noreply.gitlab.com>
Tue, 2 Jun 2020 21:34:06 +0000 (23:34 +0200)
qcsrc/client/hud/panel/strafehud.qc

index fb74c02e158f393bc5ae734dfeed66ba37251409..8eebfd45ac4accf3c66359a4c5d02359f8166cd5 100644 (file)
@@ -25,14 +25,14 @@ float strafehud_turnangle;
 
 // provide basic panel cvars to old clients
 // TODO remove them after a future release (0.8.2+)
-noref string autocvar_hud_panel_scoreboard_pos = "0.320000 0.570000";
-noref string autocvar_hud_panel_scoreboard_size = "0.360000 0.020000";
-noref string autocvar_hud_panel_scoreboard_bg = "0";
-noref string autocvar_hud_panel_scoreboard_bg_color = "";
-noref string autocvar_hud_panel_scoreboard_bg_color_team = "";
-noref string autocvar_hud_panel_scoreboard_bg_alpha = "0.7";
-noref string autocvar_hud_panel_scoreboard_bg_border = "";
-noref string autocvar_hud_panel_scoreboard_bg_padding = "";
+noref string autocvar_hud_panel_strafehud_pos = "0.320000 0.570000";
+noref string autocvar_hud_panel_strafehud_size = "0.360000 0.020000";
+noref string autocvar_hud_panel_strafehud_bg = "0";
+noref string autocvar_hud_panel_strafehud_bg_color = "";
+noref string autocvar_hud_panel_strafehud_bg_color_team = "";
+noref string autocvar_hud_panel_strafehud_bg_alpha = "0.7";
+noref string autocvar_hud_panel_strafehud_bg_border = "";
+noref string autocvar_hud_panel_strafehud_bg_padding = "";
 
 void HUD_StrafeHUD()
 {