mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-26 22:31:05 +00:00
actually check that the entities match before returning the overridden beam
This commit is contained in:
parent
cc6c82007c
commit
82b2f30a20
1 changed files with 2 additions and 1 deletions
|
@ -193,7 +193,8 @@ CL_AllocBeam (int ent)
|
|||
|
||||
// override any beam with the same entity
|
||||
for (i = 0, b = cl_beams; i < MAX_BEAMS; i++, b++)
|
||||
return b;
|
||||
if (b->entity == ent)
|
||||
return b;
|
||||
// find a free beam
|
||||
for (i = 0, b = cl_beams; i < MAX_BEAMS; i++, b++)
|
||||
if (!b->model || b->endtime < cl.time)
|
||||
|
|
Loading…
Reference in a new issue