Pisses me off. I've added this barbarian fix.
Code:
void UTIL_ClampAngle (float *fAngle)
{
if (*fAngle >= 180)
*fAngle -= 360 * ((int) (*fAngle / 360) + 1);
if (*fAngle < -180)
*fAngle += 360 * ((int) (-*fAngle / 360) + 1);
// if we're still above the limit then something's REALLY fuckedup!!!
if ((*fAngle >= 180) || (*fAngle < -180))
*fAngle = 0; // no mercy.
}
try this one now.
http://racc.bots-united.com/releases/podbot.zip
still uploading as I write this.
*edit* upload finished, go for it.