private void checkHome()
{
AntHill home = (AntHill)getOneIntersectingObject(AntHill.class);
if (home != null && !canCarryFood){
this.setImage("ant.gif");
canCarryFood = true;
getHomeHill().countFood();
}
}