if (n == 1) {
Collection<ChunkPosition> selected = chunkSelection.getSelection();
ProgressPanel progress = getControls().getProgressPanel();
if (!selected.isEmpty() && !progress.isBusy()) {
DeleteChunksJob job = new DeleteChunksJob(world, selected, progress);
job.start();
}
}
}