I thought someone had told me one time that they had fixed it because instead of doing
Code:
if(!visible)
return 0;
return 1;
they had done
Code:
if(!visible)
return 1;
return 1;
but they caught it and fixed it. Maybe they de-fixed it. Maybe someone lied to me.