Greetings!
I'm experiencing a problem, hopefully a newbie problem that can be easily fixed.
I have two entities registered on the Rigid collection, with different groupIDs.
One is a ball with mass, the other is a plate with zero mass.
When the ball touches the plate, the plate(which have an initial inclination of 45 degrees) quickly rotates to zero degrees, the ball rotates too in her's z-axis and the simulation halts.
If the plate have a different mass, the simulation works, but it meant to be a "fixed object" as referred in 3DGS manual. I don't want the plate to move

What am i doing wrong?
action Ball()
{
phent_settype(my,PH_RIGID,PH_SPHERE);
phent_setmass(my,50,PH_SPHERE);
phent_setdamping(my,0,0);
phent_setfriction(my, 60);
phent_setelasticity(my,80,1);
phent_setgroup(my,2);
}
action Terrain()
{
phent_settype(my,PH_RIGID,PH_POLY);
phent_setmass(my,0,PH_POLY);
phent_setdamping(my,0,0);
phent_setfriction(my, 10);
phent_setgroup(my,4);
}
Gravity (0,0,-386) and Groupselection (6) are set elsewhere.
Any ideas?