summaryrefslogtreecommitdiff
path: root/src/cgame/cg_consolecmds.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cgame/cg_consolecmds.c')
-rw-r--r--src/cgame/cg_consolecmds.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cgame/cg_consolecmds.c b/src/cgame/cg_consolecmds.c
index b8b055b9..3a057b3e 100644
--- a/src/cgame/cg_consolecmds.c
+++ b/src/cgame/cg_consolecmds.c
@@ -191,11 +191,11 @@ static void CG_TellAttacker_f( void )
static void CG_SquadMark_f( void )
{
centity_t *cent;
- vec3_t start, end;
+ vec3_t end;
trace_t trace;
// Find the player we are looking at
- VectorMA( cg.refdef.vieworg, 4096, cg.refdef.viewaxis[ 0 ], end );
+ VectorMA( cg.refdef.vieworg, 131072, cg.refdef.viewaxis[ 0 ], end );
CG_Trace( &trace, cg.refdef.vieworg, NULL, NULL, end,
cg.snap->ps.clientNum, CONTENTS_SOLID | CONTENTS_BODY );
if( trace.entityNum >= MAX_CLIENTS )