--- ray/src/rt/raytrace.c 1994/12/21 09:10:23 2.17 +++ ray/src/rt/raytrace.c 1995/01/06 14:00:47 2.18 @@ -452,7 +452,10 @@ register CUBE *cu; } /*NOTREACHED*/ } - if (isfull(cu->cutree) && checkhit(r, cu, cxs)) + if (isfull(cu->cutree)) { + if (checkhit(r, cu, cxs)) + return(RAYHIT); + } else if (r->ro == &Aftplane && incube(cu, r->rop)) return(RAYHIT); /* advance to next cube */ if (dirf&0x11) {