@Command(name = "pex",
syntax = "report",
permission = "permissions.manage.reportbug",
description = "Create an issue template to report an issue")
public void report(PermissionsEx plugin, CommandSender sender, Map<String, String> args) {
ErrorReport report = ErrorReport.withException("User-requested report", new Exception().fillInStackTrace());
sender.sendMessage("Fill in the information at " + report.getShortURL() + " to report an issue");
sender.sendMessage(ChatColor.RED + "NOTE: A GitHub account is necessary to report issues. Create one at https://github.com/");
}