mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
32 lines
1.7 KiB
Diff
32 lines
1.7 KiB
Diff
From 1ada1bf4361c4a6312d2228ad5fa62ade8d0d91e Mon Sep 17 00:00:00 2001
|
|
From: Zach Brown <zach.brown@destroystokyo.com>
|
|
Date: Thu, 28 May 2015 00:00:29 -0500
|
|
Subject: [PATCH] Stop using spigot's website for timings
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/command/defaults/TimingsCommand.java b/src/main/java/org/bukkit/command/defaults/TimingsCommand.java
|
|
index fc59aa3..9782a3b 100644
|
|
--- a/src/main/java/org/bukkit/command/defaults/TimingsCommand.java
|
|
+++ b/src/main/java/org/bukkit/command/defaults/TimingsCommand.java
|
|
@@ -94,7 +94,7 @@ public class TimingsCommand extends BukkitCommand {
|
|
}
|
|
|
|
sender.sendMessage("Timings written to " + timings.getPath());
|
|
- sender.sendMessage( "Paste contents of file into form at http://www.spigotmc.org/go/timings to read results." );
|
|
+ sender.sendMessage( "Paste contents of file into form at http://aikar.co/timings.php to read results." );
|
|
|
|
} catch (IOException e) {
|
|
} finally {
|
|
@@ -241,7 +241,7 @@ public class TimingsCommand extends BukkitCommand {
|
|
|
|
String location = con.getHeaderField( "Location" );
|
|
String pasteID = location.substring( "http://paste.ubuntu.com/".length(), location.length() - 1 );
|
|
- sender.sendMessage( ChatColor.GREEN + "Timings results can be viewed at http://www.spigotmc.org/go/timings?url=" + pasteID );
|
|
+ sender.sendMessage( ChatColor.GREEN + "Timings results can be viewed at http://aikar.co/timings.php?url=" + pasteID );
|
|
} catch ( IOException ex )
|
|
{
|
|
sender.sendMessage( ChatColor.RED + "Error pasting timings, check your console for more information" );
|
|
--
|
|
2.4.1.windows.1
|
|
|