This is the physics setup of the ball. I'm only using a mass of 5. (normal_friction = 50 and normal_damping = 60 currently)

code:
 
phent_settype(my,PH_RIGID,PH_SPHERE);
phent_setgroup(my,2);
phent_setmass(my,5,PH_SPHERE);
phent_setfriction(my,normal_friction);
phent_setelasticity(my,50,40);
phent_setdamping(my,normal_damping,normal_damping);
player=my;

I'm using ph_setcorrections(20000,0.1);

I will set it up so that I can adjust these values on the fly and see if that helps. Thanks for the tips.

Jason