From b713e67e8039d1f29af68360bdae011bd722c578 Mon Sep 17 00:00:00 2001 From: havoc Date: Wed, 24 Dec 2003 21:24:49 +0000 Subject: [PATCH] fix a bug with using the wrong trace end variable in the COLLISIONPARANOID print git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@3754 d7cf8633-e32d-0410-b094-e92efae38249 --- sv_move.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sv_move.c b/sv_move.c index ba108830..c7053c22 100644 --- a/sv_move.c +++ b/sv_move.c @@ -144,7 +144,7 @@ qboolean SV_movestep (edict_t *ent, vec3_t move, qboolean relink) if (trace.startsolid || endstuck) #endif { - Con_Printf("%s{e%i:%f %f %f:%f %f %f:%f:%f %f %f%s%s}\n", (trace.startsolid || endstuck) ? "\002" : "", ent - sv.edicts, ent->v->origin[0], ent->v->origin[1], ent->v->origin[2], end[0] - ent->v->origin[0], end[1] - ent->v->origin[1], end[2] - ent->v->origin[2], trace.fraction, trace.endpos[0] - ent->v->origin[0], trace.endpos[1] - ent->v->origin[1], trace.endpos[2] - ent->v->origin[2], trace.startsolid ? " startstuck" : "", endstuck ? " endstuck" : ""); + Con_Printf("%s{e%i:%f %f %f:%f %f %f:%f:%f %f %f%s%s}\n", (trace.startsolid || endstuck) ? "\002" : "", ent - sv.edicts, ent->v->origin[0], ent->v->origin[1], ent->v->origin[2], neworg[0] - ent->v->origin[0], neworg[1] - ent->v->origin[1], neworg[2] - ent->v->origin[2], trace.fraction, trace.endpos[0] - ent->v->origin[0], trace.endpos[1] - ent->v->origin[1], trace.endpos[2] - ent->v->origin[2], trace.startsolid ? " startstuck" : "", endstuck ? " endstuck" : ""); //Con_Printf("trace %f %f %f : %f : %f %f %f\n", trace.endpos[0], trace.endpos[1], trace.endpos[2], trace.fraction, trace.plane.normal[0], trace.plane.normal[1], trace.plane.normal[2]); if (endstuck) Cbuf_AddText("disconnect\n"); -- 2.39.2