<~Z750> sex it up for me
This commit is contained in:
parent
d8c6c41507
commit
2b99b1095e
|
@ -1,11 +1,11 @@
|
||||||
From 094786ddb64163d121a930ee4d58b916c2c995bd Mon Sep 17 00:00:00 2001
|
From 57c2f9101b897153d7afe526de98b4334ad925dd Mon Sep 17 00:00:00 2001
|
||||||
From: Zach Brown <zach.brown@destroystokyo.com>
|
From: Zach Brown <zach.brown@destroystokyo.com>
|
||||||
Date: Fri, 1 Apr 2016 01:29:29 -0500
|
Date: Fri, 1 Apr 2016 01:29:29 -0500
|
||||||
Subject: [PATCH] gottagofast
|
Subject: [PATCH] gottagofast
|
||||||
|
|
||||||
|
|
||||||
diff --git a/src/main/java/org/spigotmc/TicksPerSecondCommand.java b/src/main/java/org/spigotmc/TicksPerSecondCommand.java
|
diff --git a/src/main/java/org/spigotmc/TicksPerSecondCommand.java b/src/main/java/org/spigotmc/TicksPerSecondCommand.java
|
||||||
index 6d21c32..a9ff56d 100644
|
index 6d21c32..dc1d134 100644
|
||||||
--- a/src/main/java/org/spigotmc/TicksPerSecondCommand.java
|
--- a/src/main/java/org/spigotmc/TicksPerSecondCommand.java
|
||||||
+++ b/src/main/java/org/spigotmc/TicksPerSecondCommand.java
|
+++ b/src/main/java/org/spigotmc/TicksPerSecondCommand.java
|
||||||
@@ -6,6 +6,7 @@ import org.bukkit.command.CommandSender;
|
@@ -6,6 +6,7 @@ import org.bukkit.command.CommandSender;
|
||||||
|
@ -28,21 +28,15 @@ index 6d21c32..a9ff56d 100644
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -25,6 +31,13 @@ public class TicksPerSecondCommand extends Command
|
@@ -25,6 +31,7 @@ public class TicksPerSecondCommand extends Command
|
||||||
|
|
||||||
// Paper start - Further improve tick handling
|
// Paper start - Further improve tick handling
|
||||||
double[] tps = org.bukkit.Bukkit.getTPS();
|
double[] tps = org.bukkit.Bukkit.getTPS();
|
||||||
+ // Paper start again for more fast - go fast
|
+ if (goFast) tps = java.util.Arrays.stream(tps).map(t -> t * 100).toArray(); // Paper gotta go more faster super hot fire
|
||||||
+ if (goFast) {
|
|
||||||
+ for ( int i = 0; i < tps.length; i++) {
|
|
||||||
+ tps[i] = tps[i] * 100;
|
|
||||||
+ }
|
|
||||||
+ }
|
|
||||||
+ // Paper end for more faster
|
|
||||||
String[] tpsAvg = new String[tps.length];
|
String[] tpsAvg = new String[tps.length];
|
||||||
|
|
||||||
for ( int i = 0; i < tps.length; i++) {
|
for ( int i = 0; i < tps.length; i++) {
|
||||||
@@ -38,7 +51,15 @@ public class TicksPerSecondCommand extends Command
|
@@ -38,7 +45,15 @@ public class TicksPerSecondCommand extends Command
|
||||||
|
|
||||||
private static String format(double tps) // Paper - Made static
|
private static String format(double tps) // Paper - Made static
|
||||||
{
|
{
|
||||||
|
@ -60,5 +54,5 @@ index 6d21c32..a9ff56d 100644
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
--
|
--
|
||||||
2.8.0.windows.1
|
2.7.4
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue