I have seen quite a few people with the same problem, but the solutions doesn't apply to me.
That is, because i got the randomTurn(); method
So, how do I keep the image still, and not turn, when the instance does?
public void randomTurn()
{
if(Greenfoot.getRandomNumber(100)<10)
{
turn(Greenfoot.getRandomNumber(90)-45);
}
}
