mirror of
https://github.com/PaperMC/Paper.git
synced 2025-02-03 13:27:23 +01:00
<~Z750> sex it up for me
This commit is contained in:
parent
d89da5a2ad
commit
3125accf7d
1 changed files with 1 additions and 7 deletions
|
@ -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++) {
|
||||
|
|
Loading…
Add table
Reference in a new issue