From d3bcc14e5aca55bccf73c39ab150fb7b372fd88d Mon Sep 17 00:00:00 2001 From: Spoike Date: Fri, 30 Jan 2009 04:20:46 +0000 Subject: [PATCH] Should allow bigfoot to aim with the lightning gun. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@3109 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/client/cl_tent.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/client/cl_tent.c b/engine/client/cl_tent.c index be1565bbf..2ba1801d6 100644 --- a/engine/client/cl_tent.c +++ b/engine/client/cl_tent.c @@ -2662,7 +2662,7 @@ void CL_UpdateBeams (void) // VectorAdd(b->end, org, b->end); //move the end point by simorg-start pl = &cl.frames[cl.parsecount&UPDATE_MASK].playerstate[b->entity-1]; - if (pl->messagenum == cl.parsecount) + if (pl->messagenum == cl.parsecount || cls.protocol == CP_NETQUAKE) { vec3_t fwd, org, ang; float delta, f, len;