Hexen2: Match vanilla quake's placement of EF_BRIGHTLIGHT dlights. This should also stop hexen2's torches from being in the ground.
This commit is contained in:
parent
4577ffcbb1
commit
ef4a7ace26
1 changed files with 6 additions and 1 deletions
|
@ -4205,7 +4205,12 @@ void CL_LinkPacketEntities (void)
|
|||
if (radius)
|
||||
{
|
||||
radius += r_lightflicker.value?((flicker + state->number)&31):0;
|
||||
CL_NewDlight(state->number, ent->origin, radius, 0.1, colour[0], colour[1], colour[2]);
|
||||
dl = CL_NewDlight(state->number, ent->origin, radius, 0.1, colour[0], colour[1], colour[2]);
|
||||
|
||||
if (state->effects & EF_BRIGHTLIGHT)
|
||||
{ //urgh. apparently correct for vanilla quake. puts the bright effect about where the firing point is. broken for hexen2, yet still consistent with the hexen2 engine...
|
||||
dl->origin[2] += 16;
|
||||
}
|
||||
}
|
||||
}
|
||||
if ((state->lightpflags & (PFLAGS_FULLDYNAMIC|PFLAGS_CORONA)) && ((state->lightpflags&PFLAGS_FULLDYNAMIC)||state->light[3]))
|
||||
|
|
Loading…
Reference in a new issue