SteamWar/BauSystem2.0
Archiviert
12
0

Hotfix BauScoreboard trace section

Signed-off-by: yoyosource <yoyosource@nidido.de>
Dieser Commit ist enthalten in:
yoyosource 2021-08-16 17:01:03 +02:00
Ursprung 3d5aeef992
Commit 90e51d3a18
2 geänderte Dateien mit 4 neuen und 3 gelöschten Zeilen

Datei anzeigen

@ -19,6 +19,7 @@
package de.steamwar.bausystem.features.tracer.show; package de.steamwar.bausystem.features.tracer.show;
import de.steamwar.bausystem.features.tpslimit.TPSUtils;
import de.steamwar.bausystem.features.tracer.TNTPosition; import de.steamwar.bausystem.features.tracer.TNTPosition;
import de.steamwar.bausystem.shared.ShowMode; import de.steamwar.bausystem.shared.ShowMode;
import org.bukkit.entity.TNTPrimed; import org.bukkit.entity.TNTPrimed;
@ -46,7 +47,7 @@ public class Record {
/* The following methods should only be called by a recorder */ /* The following methods should only be called by a recorder */
public Record() { public Record() {
startTime = System.currentTimeMillis(); startTime = TPSUtils.currentTick.get();
StoredRecords.add(this); StoredRecords.add(this);
} }

Datei anzeigen

@ -3,6 +3,7 @@ package de.steamwar.bausystem.features.world;
import de.steamwar.bausystem.BauSystem; import de.steamwar.bausystem.BauSystem;
import de.steamwar.bausystem.features.loader.Loader; import de.steamwar.bausystem.features.loader.Loader;
import de.steamwar.bausystem.features.tpslimit.TPSLimitUtils; import de.steamwar.bausystem.features.tpslimit.TPSLimitUtils;
import de.steamwar.bausystem.features.tpslimit.TPSUtils;
import de.steamwar.bausystem.features.tpslimit.TPSWarpUtils; import de.steamwar.bausystem.features.tpslimit.TPSWarpUtils;
import de.steamwar.bausystem.features.tracer.record.RecordStateMachine; import de.steamwar.bausystem.features.tracer.record.RecordStateMachine;
import de.steamwar.bausystem.linkage.LinkageType; import de.steamwar.bausystem.linkage.LinkageType;
@ -89,7 +90,7 @@ public class BauScoreboard implements Listener {
} }
private long traceTicks() { private long traceTicks() {
return (System.currentTimeMillis() - RecordStateMachine.getStartTime()) / 50; return TPSUtils.currentTick.get() - RecordStateMachine.getStartTime();
} }
private String tpsColor() { private String tpsColor() {
@ -109,5 +110,4 @@ public class BauScoreboard implements Listener {
} }
return "§8/§7" + TPSLimitUtils.getCurrentTPSLimit(); return "§8/§7" + TPSLimitUtils.getCurrentTPSLimit();
} }
} }