mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-05-10 14:20:38 +00:00
dlights now work for BOTH software AND gl :)
This commit is contained in:
parent
bf0f29bdcd
commit
6f30e5ee26
1 changed files with 1 additions and 1 deletions
|
@ -619,11 +619,11 @@ CL_LinkPacketEntities (void)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (model->flags & EF_ROCKET) {
|
if (model->flags & EF_ROCKET) {
|
||||||
R_RocketTrail (0, (*ent));
|
|
||||||
dl = CL_AllocDlight (-s1->number);
|
dl = CL_AllocDlight (-s1->number);
|
||||||
VectorCopy ((*ent)->origin, dl->origin);
|
VectorCopy ((*ent)->origin, dl->origin);
|
||||||
dl->radius = 200;
|
dl->radius = 200;
|
||||||
dl->die = cl.time + 0.1;
|
dl->die = cl.time + 0.1;
|
||||||
|
R_RocketTrail (0, (*ent));
|
||||||
} else if (model->flags & EF_GRENADE)
|
} else if (model->flags & EF_GRENADE)
|
||||||
R_RocketTrail (1, (*ent));
|
R_RocketTrail (1, (*ent));
|
||||||
else if (model->flags & EF_GIB)
|
else if (model->flags & EF_GIB)
|
||||||
|
|
Loading…
Reference in a new issue