@Override
  public final boolean onExecute(
      GoldenApple instance, User user, String commandLabel, String[] args) {
    if (user.getVariableBoolean("goldenapple.complexSyntax")) {
      onExecuteComplex(instance, user, commandLabel, args);
    } else {
      onExecuteSimple(instance, user, commandLabel, args);
    }

    return true;
  }