public void run()
{
broadcastSync(ChatColor.RED + "Generating Match Summary...");
String report = matchReportGenerator.generate(AutoRefMatch.this);
MatchUploadStatsEvent event = new MatchUploadStatsEvent(AutoRefMatch.this, report);
AutoReferee.callEvent(event);
report = event.getWebstats();
String webstats = null;
if (!event.isCancelled())
{
if (this.localStorage != null)
{
String localFileID = new SimpleDateFormat("yyyy.MM.dd-HH.mm.ss").format(new Date()) + ".html";
File localReport = new File(this.localStorage, localFileID);