SteamWar/SpigotCore
Archiviert
13
0

Simplify TPSWatcher

Dieser Commit ist enthalten in:
jojo 2021-02-08 18:00:01 +01:00
Ursprung c694d5f103
Commit e28d4af9de

Datei anzeigen

@ -46,20 +46,20 @@ public class TPSWatcher {
return getTPS(TPSType.ONE_SECOND); return getTPS(TPSType.ONE_SECOND);
} }
public static double getTPSLimited(double limit) { public static double getTPS(double limit) {
return getTPSLimited(TPSType.ONE_SECOND, limit); return getTPS(TPSType.ONE_SECOND, limit);
} }
public static double getTPSUnlimited() { public static double getTPSUnlimited() {
return getTPSUnlimited(TPSType.ONE_SECOND); return getTPSUnlimited(TPSType.ONE_SECOND);
} }
public static double getTPSLimited(TPSType tpsType, double limit) { public static double getTPS(TPSType tpsType) {
return Math.min(getTPSUnlimited(tpsType), limit); return getTPS(tpsType, TICK_DEFAULT);
} }
public static double getTPS(TPSType tpsType) { public static double getTPS(TPSType tpsType, double limit) {
return Math.min(getTPSUnlimited(tpsType), TICK_DEFAULT); return Math.min(getTPSUnlimited(tpsType), limit);
} }
public static double getTPSUnlimited(TPSType tpsType) { public static double getTPSUnlimited(TPSType tpsType) {