Improvements:
 ● Improved region system for mines.
 ● Improved API.
 
 Added:
 ● Blocks list method for API, below is a example of how you can get blocks for all mines. 
 
 
 
 
  Code (Text):
 
 
 
  List<String> mines = AsylumMines.getAPI().getMines();
  
 for (String s : mines) {
  
     List<Block> blocks = AsylumMines.getAPI().getBlocks(s);
  
     // do this with blocks.
  
 }