public SimpleIRCBot bot;
public void onEnable(){
super.onEnable(true);
this.config = new PluginConfig(new File(this.baseDirPath + File.separator + "config.yml"), Config.class, this.log);
this.aliasStore = new DataStore(new File(this.baseDirPath + File.separator + "aliases.txt"), true);
this.aliasStore.load();
this.ircAliases = new HashMap<String, String>(this.aliasStore.size());
this.gameAliases = new HashMap<String, String>(this.aliasStore.size());