Ok, so I'm trying to remove a bomb within an area defined by a class. That being bombArea. While the bombs work, there seems to be an incompatible types error with boomWorld = getWorld();. I'm not sure how to fix this.
private void bombBoom()
{
Actor bomb;
bomb = getOneObjectAtOffset(0, 0, Bomb.class);
if (bomb != null)
{
MyWorld boomWorld;
boomWorld = getWorld();
boomWorld.removeObject(bomb);
}
}

