From bd557d0eea5c26c11a87d7dc28a74e0ad6f503ee Mon Sep 17 00:00:00 2001 From: FruitieX Date: Tue, 26 Oct 2010 16:13:10 +0300 Subject: [PATCH] fix two typos --- qcsrc/client/Main.qc | 2 +- qcsrc/client/hud.qc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/qcsrc/client/Main.qc b/qcsrc/client/Main.qc index 924932090..c20d45f3c 100644 --- a/qcsrc/client/Main.qc +++ b/qcsrc/client/Main.qc @@ -634,7 +634,7 @@ float CSQC_InputEvent(float bInputType, float nPrimary, float nSecondary) if(menu_action(bInputType, nPrimary, nSecondary)) return TRUE; - if(autocvar_g_allow_uid2name == -1 && gametype == GAME_CTS || gametype == GAME_RACE && panel_fg_alpha) // don't lock keys before we actually see what's going on + if(autocvar_cl_allow_uid2name == -1 && gametype == GAME_CTS || gametype == GAME_RACE && panel_fg_alpha) // don't lock keys before we actually see what's going on { string vyes_keys; float keys; diff --git a/qcsrc/client/hud.qc b/qcsrc/client/hud.qc index 235c2be52..2a9560552 100644 --- a/qcsrc/client/hud.qc +++ b/qcsrc/client/hud.qc @@ -3844,7 +3844,7 @@ void HUD_VoteWindow(void) s = "A vote has been called for:"; if(autocvar_cl_allow_uid2name == -1 && gametype == GAME_CTS || gametype == GAME_RACE) - s = "Allow servers to store and display your name?" + s = "Allow servers to store and display your name?"; drawstring_aspect(pos, s, eX * mySize_x + eY * (2/8) * mySize_y, '1 1 1', a, DRAWFLAG_NORMAL); s = textShortenToWidth(vote_called_vote, mySize_x, '1 1 0' * mySize_y * (1.75/8), stringwidth_colors); if(autocvar__hud_configure) -- 2.39.2