From 4f6a434e8522303ed88751eea06aa5b3166fef4a Mon Sep 17 00:00:00 2001 From: Spoike Date: Thu, 26 Aug 2004 07:38:52 +0000 Subject: [PATCH] small fix so lightning3 works... git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@47 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/client/cl_tent.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/engine/client/cl_tent.c b/engine/client/cl_tent.c index af0b07283..1a62c50f4 100644 --- a/engine/client/cl_tent.c +++ b/engine/client/cl_tent.c @@ -699,9 +699,11 @@ void CL_ParseTEnt (void) case TE_LIGHTNING1: // lightning bolts case TE_LIGHTNING2: // lightning bolts - case TE_LIGHTNING3: // lightning bolts CL_ParseBeam (type - TE_LIGHTNING1); break; + case TE_LIGHTNING3: // lightning bolts + CL_ParseBeam (2); + break; case TE_LAVASPLASH: pos[0] = MSG_ReadCoord ();