SteamWar/BauSystem
Archiviert
13
0

RegionFix #240

Manuell gemergt
YoyoNow hat 34 Commits von RegionFix nach master 2021-04-05 16:57:57 +02:00 zusammengeführt
2 geänderte Dateien mit 16 neuen und 0 gelöschten Zeilen
Nur Änderungen aus Commit 387ef9d265 werden angezeigt - Alle Commits anzeigen

Datei anzeigen

@ -157,6 +157,7 @@ public class BauSystem extends JavaPlugin implements Listener {
if (autoShutdown != null) {
autoShutdown.cancel();
}
CommandTPSLimiter.setTPS(20.0);
autoShutdown = Bukkit.getScheduler().runTaskTimer(this, new Runnable() {
int count = 0;

Datei anzeigen

@ -40,6 +40,12 @@ import java.util.List;
public class CommandTPSLimiter extends SWCommand {
private static CommandTPSLimiter instance = null;
{
instance = this;
}
private static final World WORLD = Bukkit.getWorlds().get(0);
private static double currentTPSLimit = 20;
@ -158,4 +164,13 @@ public class CommandTPSLimiter extends SWCommand {
return (double) Math.round(currentTPSLimit * 10.0D) / 10.0D;
}
public static void setTPS(double d) {
if (d < 0.5) d = 0.5;
if (d > (TPSUtils.isWarpAllowed() ? 40 : 20)) d = (TPSUtils.isWarpAllowed() ? 40 : 20);
if (instance != null) {
currentTPSLimit = d;
instance.tpsLimiter();
}
}
}