From 2e2e54e3c5fae7b426bf44d72ec6c0c00974f58f Mon Sep 17 00:00:00 2001 From: Thilo Schulz Date: Fri, 4 Mar 2011 21:51:34 +0000 Subject: [PATCH] Fix quirk reported by Zack Middleton --- code/cgame/cg_players.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/cgame/cg_players.c b/code/cgame/cg_players.c index 64b3d4d2..580154cb 100644 --- a/code/cgame/cg_players.c +++ b/code/cgame/cg_players.c @@ -990,7 +990,7 @@ void CG_NewClientInfo( int clientNum ) { char *skin; if( cgs.gametype >= GT_TEAM ) { - Q_strncpyz( newInfo.headModelName, DEFAULT_TEAM_MODEL, sizeof( newInfo.headModelName ) ); + Q_strncpyz( newInfo.headModelName, DEFAULT_TEAM_HEAD, sizeof( newInfo.headModelName ) ); Q_strncpyz( newInfo.headSkinName, "default", sizeof( newInfo.headSkinName ) ); } else { trap_Cvar_VariableStringBuffer( "headmodel", modelStr, sizeof( modelStr ) );