From 8641bd11ba9fa01804613416ebc3f1d48c8ecf84 Mon Sep 17 00:00:00 2001 From: havoc Date: Fri, 14 Nov 2003 13:19:24 +0000 Subject: [PATCH] don't draw viewmodel during intermission git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@3643 d7cf8633-e32d-0410-b094-e92efae38249 --- cl_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cl_main.c b/cl_main.c index 8e55decf..6a1356c6 100644 --- a/cl_main.c +++ b/cl_main.c @@ -850,7 +850,7 @@ static void CL_RelinkNetworkEntities(void) ent->state_current.modelindex = cl.stats[STAT_WEAPON]; ent->state_current.frame = cl.stats[STAT_WEAPONFRAME]; ent->state_current.flags = RENDER_VIEWMODEL; - if (cl.stats[STAT_HEALTH] <= 0) + if (cl.stats[STAT_HEALTH] <= 0 || cl.intermission) ent->state_current.modelindex = 0; else if (cl.items & IT_INVISIBILITY) { -- 2.39.2