diff --git a/light/ltface.c b/light/ltface.c index 2f719ff4..28be7f5b 100644 --- a/light/ltface.c +++ b/light/ltface.c @@ -1235,7 +1235,6 @@ LightFace_Entity(const bsp2_t *bsp, vec_t planedist, add, angle, spotscale; lightsample_t *sample; lightmap_t *lightmap; - qboolean curved = lightsurf->curved; /* vis cull */ if (VisCullEntity(bsp, lightsurf, entity)) { @@ -1245,7 +1244,7 @@ LightFace_Entity(const bsp2_t *bsp, planedist = DotProduct(entity->origin, plane->normal) - plane->dist; /* don't bother with lights behind the surface */ - if (planedist < 0 && !curved) + if (planedist < 0) return; /* sphere cull surface and light */