Index: src/cgame/cg_buildable.c =================================================================== --- src/cgame/cg_buildable.c (revision 2048) +++ src/cgame/cg_buildable.c (working copy) @@ -572,16 +572,9 @@ VectorMA( inOrigin, -TRACE_DEPTH, normal, end ); VectorMA( inOrigin, 1.0f, normal, start ); - CG_CapTrace( &tr, start, mins, maxs, end, skipNumber, + CG_Trace( &tr, start, mins, maxs, end, skipNumber, CONTENTS_SOLID | CONTENTS_PLAYERCLIP ); - if( tr.fraction == 1.0f ) - { - //erm we missed completely - try again with a box trace - CG_Trace( &tr, start, mins, maxs, end, skipNumber, - CONTENTS_SOLID | CONTENTS_PLAYERCLIP ); - } - VectorMA( inOrigin, tr.fraction * -TRACE_DEPTH, normal, outOrigin ); }