Anyone what does this error mean and how can it be fixed
ERROR incompatible type what does this mean?
public void move()
{
if(wormsEaten) ERROR on this line stating incompatible type
{
wormEnergy = (wormEnergy + 20);
move(4);
wormEnergy = (wormEnergy - 1);
wormCount = (wormCount - 1);
}
}
