SteamWar/SpigotCore
Archiviert
13
0

Merge pull request 'Add TPSWatcher.getTPSLimited' (#92) from TPSWatcher into master

Reviewed-by: Lixfel <lixfel@steamwar.de>
Dieser Commit ist enthalten in:
Lixfel 2021-02-08 18:04:38 +01:00
Commit 49831d498d

Datei anzeigen

@ -29,7 +29,7 @@ public class TPSWatcher {
private static final TPSWatcher tps_TenSecond = new TPSWatcher(10000);
private long lastTime = System.currentTimeMillis();
private double tps = 20.0;
private double tps = TICK_DEFAULT;
private TPSWatcher(long timeInterval) {
Bukkit.getScheduler().runTaskTimer(Core.getInstance(), () -> {
@ -46,12 +46,20 @@ public class TPSWatcher {
return getTPS(TPSType.ONE_SECOND);
}
public static double getTPS(double limit) {
return getTPS(TPSType.ONE_SECOND, limit);
}
public static double getTPSUnlimited() {
return getTPSUnlimited(TPSType.ONE_SECOND);
}
public static double getTPS(TPSType tpsType) {
return Math.min(getTPSUnlimited(tpsType), 20.0);
return getTPS(tpsType, TICK_DEFAULT);
}
public static double getTPS(TPSType tpsType, double limit) {
return Math.min(getTPSUnlimited(tpsType), limit);
}
public static double getTPSUnlimited(TPSType tpsType) {