try {
startup = System.currentTimeMillis();
final Config config = new Config();
PermissionManager manager = new PermissionManager();
System.out.println("Loading and registering commands");
config.load();
manager.load();
Reflections reflections = new Reflections("com.zack6849.alphabot.commands");
Set<Class<? extends Command>> subTypes = reflections.getSubTypesOf(Command.class);
for (Class c : subTypes) {
Command cmd = CommandRegistry.getCommand(c.getSimpleName());