From b373195f026a651704778e83f8af2974c9b4ca5b Mon Sep 17 00:00:00 2001 From: Spoike Date: Mon, 6 Mar 2006 18:53:09 +0000 Subject: [PATCH] Found a bug with mvd playback and colormod. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2057 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/client/cl_ents.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/engine/client/cl_ents.c b/engine/client/cl_ents.c index 2592633dd..fa73dd042 100644 --- a/engine/client/cl_ents.c +++ b/engine/client/cl_ents.c @@ -2402,6 +2402,10 @@ void CL_ParsePlayerinfo (void) state->alpha = 255; state->fatness = 0; + state->colourmod[0] = 32; + state->colourmod[1] = 32; + state->colourmod[2] = 32; + state->pm_type = PM_NORMAL; TP_ParsePlayerInfo(oldstate, state, info);