}
// consume fuel
if (((entity instanceof Aero) && game.getOptions().booleanOption("fuel_consumption")) || (entity instanceof TeleMissile)) {
int fuelUsed = ((Aero) entity).getFuelUsed(thrust);
a.useFuel(fuelUsed);
}
//jumpships and space stations need to reduce accumulated thrust if they spend some
if(entity instanceof Jumpship) {
Jumpship js = (Jumpship)entity;