for (Entry<String, String> entry : this.aliasStore.getAll()){
this.ircAliases.put(entry.getKey().toLowerCase(), entry.getValue());
this.gameAliases.put(entry.getValue().toLowerCase(), entry.getKey());
}
this.bot = new SimpleIRCBot(this);
this.bot.connect();
this.permissionManager.registerPermissions(Permission.class);
this.commandManager.registerCommandExecutor(new IRCCommandExecutor(this));