From d719b0e91811137798c7c8b9be8524f1863d92cc Mon Sep 17 00:00:00 2001 From: Richard Allen Date: Tue, 26 Feb 2002 04:02:53 +0000 Subject: [PATCH] Getting rid of the triangles over teammates heads by making cg_drawFriend's default 0 --- reaction/cgame/cg_main.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/reaction/cgame/cg_main.c b/reaction/cgame/cg_main.c index 442f73f3..a9b8bdab 100644 --- a/reaction/cgame/cg_main.c +++ b/reaction/cgame/cg_main.c @@ -5,6 +5,10 @@ //----------------------------------------------------------------------------- // // $Log$ +// Revision 1.39 2002/02/26 04:02:53 jbravo +// Getting rid of the triangles over teammates heads by making cg_drawFriend's +// default 0 +// // Revision 1.38 2002/02/04 00:11:12 slicer // Matchmode: Teams Ready/Not Ready goes by cvar MM_team1/2 // @@ -320,7 +324,7 @@ static cvarTable_t cvarTable[] = { // bk001129 { &cg_drawTeamOverlay, "cg_drawTeamOverlay", "0", CVAR_ARCHIVE }, { &cg_teamOverlayUserinfo, "teamoverlay", "0", CVAR_ROM | CVAR_USERINFO }, { &cg_stats, "cg_stats", "0", 0 }, - { &cg_drawFriend, "cg_drawFriend", "1", CVAR_ARCHIVE }, + { &cg_drawFriend, "cg_drawFriend", "0", CVAR_ARCHIVE }, { &cg_teamChatsOnly, "cg_teamChatsOnly", "0", CVAR_ARCHIVE }, { &cg_noVoiceChats, "cg_noVoiceChats", "0", CVAR_ARCHIVE }, { &cg_noVoiceText, "cg_noVoiceText", "0", CVAR_ARCHIVE },