public IgnoreModule(PickleCraftPlugin plugin) {
   this.plugin = plugin;
   igFile = new File(plugin.getDataFolder() + "/ignores.json");
   if (!igFile.exists()) {
     try {
       igFile.createNewFile();
     } catch (IOException ex) {
       PickleCraftPlugin.log.log(Level.SEVERE, null, ex);
     }
   }
 }