JCL : Do you THINK, at this early stage, that your fix will also rectify a minor, related lite-c issue I have as well?
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...