[qw] Test the muzzle_flash flag

I had forgotten this when doing dynamic lights on entities. Fixes the
eternal flickering light.
This commit is contained in:
Bill Currie 2024-01-12 23:15:06 +09:00
parent c01c4180f3
commit 163451a29a

View file

@ -399,6 +399,7 @@ muzzle_flash (entity_t ent, player_state_t *state, bool is_player)
VectorCopy (f, fv);
VectorCopy (state->pls.es.origin, position);
CL_MuzzleFlash (ent, position, fv, 0, cl.time);
state->muzzle_flash = false;
}
/*
@ -469,7 +470,9 @@ CL_LinkPlayers (void)
state->pls.es.glow_size, state->pls.es.glow_color,
cl.time);
}
muzzle_flash (ent, state, j == cl.playernum);
if (state->muzzle_flash) {
muzzle_flash (ent, state, j == cl.playernum);
}
// Draw player?
if (!Cam_DrawPlayer (j))