mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 22:51:57 +00:00
lets make that new con_stayhidden cvar default to 1 instead. should make it look slightly more professional.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4734 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
258a4163ae
commit
5f9e575e75
2 changed files with 3 additions and 3 deletions
|
@ -226,7 +226,7 @@ void SCR_ScreenShot_f (void);
|
|||
void SCR_RSShot_f (void);
|
||||
void SCR_CPrint_f(void);
|
||||
|
||||
cvar_t con_stayhidden = CVARFD("con_stayhidden", "0", CVAR_NOTFROMSERVER, "0: allow console to pounce on the user\n1: console stays hidden unless explicitly invoked\n2:toggleconsole command no longer works\n3: shift+escape key no longer works");
|
||||
cvar_t con_stayhidden = CVARFD("con_stayhidden", "1", CVAR_NOTFROMSERVER, "0: allow console to pounce on the user\n1: console stays hidden unless explicitly invoked\n2:toggleconsole command no longer works\n3: shift+escape key no longer works");
|
||||
cvar_t show_fps = SCVARF("show_fps", "0", CVAR_ARCHIVE);
|
||||
cvar_t show_fps_x = SCVAR("show_fps_x", "-1");
|
||||
cvar_t show_fps_y = SCVAR("show_fps_y", "-1");
|
||||
|
|
|
@ -865,9 +865,9 @@ void SV_EvaluatePenalties(client_t *cl)
|
|||
{
|
||||
//we should only reach here by a player getting banned mid-game.
|
||||
if (penaltyreason[0])
|
||||
SV_BroadcastPrintf(PRINT_HIGH, va("%s was banned: %s\n", cl->name, penaltyreason[0]));
|
||||
SV_BroadcastPrintf(PRINT_HIGH, "%s was banned: %s\n", cl->name, penaltyreason[0]);
|
||||
else
|
||||
SV_BroadcastPrintf(PRINT_HIGH, va("%s was banned\n", cl->name));
|
||||
SV_BroadcastPrintf(PRINT_HIGH, "%s was banned\n", cl->name);
|
||||
cl->drop = true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue