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++) {