JCL : Do you THINK, at this early stage, that your fix will also rectify a minor, related lite-c issue I have as well?
Code:
if((ent!=NULL)&&(ent.alpha>=10))  beep();    //crashes if ent is null
//my workaround
if(ent!=NULL)  if(ent.alpha>=10)  beep();    //works fine (no beep) if ent is null
If it doesnt fix it, its not worth worrying about, I'd would just like to know...



"There is no fate but what WE make." - CEO Cyberdyne Systems Corp.
A8.30.5 Commercial