From 3125accf7d869b2f847fcdeb547986bb4aeab1d5 Mon Sep 17 00:00:00 2001 From: DemonWav Date: Fri, 1 Apr 2016 01:54:53 -0500 Subject: [PATCH] <~Z750> sex it up for me --- Spigot-Server-Patches/gottagofast.patch | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/Spigot-Server-Patches/gottagofast.patch b/Spigot-Server-Patches/gottagofast.patch index 27789b153f..362ae80ec8 100644 --- a/Spigot-Server-Patches/gottagofast.patch +++ b/Spigot-Server-Patches/gottagofast.patch @@ -32,13 +32,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000 // Paper start - Further improve tick handling double[] tps = org.bukkit.Bukkit.getTPS(); -+ // Paper start again for more fast - go fast -+ if (goFast) { -+ for ( int i = 0; i < tps.length; i++) { -+ tps[i] = tps[i] * 100; -+ } -+ } -+ // Paper end for more faster ++ if (goFast) tps = java.util.Arrays.stream(tps).map(t -> t * 100).toArray(); // Paper gotta go more faster super hot fire String[] tpsAvg = new String[tps.length]; for ( int i = 0; i < tps.length; i++) {