]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
fix two typos
authorFruitieX <rasse@rasse-laptop.(none)>
Tue, 26 Oct 2010 13:13:10 +0000 (16:13 +0300)
committerFruitieX <rasse@rasse-laptop.(none)>
Tue, 26 Oct 2010 13:13:10 +0000 (16:13 +0300)
qcsrc/client/Main.qc
qcsrc/client/hud.qc

index 924932090e219c963c96ff8a68f676c1ed148f82..c20d45f3c1a456501ea252089503ac067bbf2ced 100644 (file)
@@ -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;
index 235c2be52645c14f826453b13340406689a852bd..2a9560552fd73586540ac33750cbf70b04f0a32d 100644 (file)
@@ -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)