if(Greenfoot.isKeyDown("left"))
{
if(drift <= 3)
{
drift = drift * (-0.1);
turn(Math.round(drift));
}
}
So that is the code that runs in the act method. The bolded section is where I get my error, " Possible lossy conversion rates from long to int"
My number will always be an integer that isn't big enough where an int cannot hold the value. How would I convert a long into an int then?

