Skip to content

Commit

Permalink
remove DebugHandler check name
Browse files Browse the repository at this point in the history
I don't this is used
  • Loading branch information
ManInMyVan committed Jan 20, 2025
1 parent 54a10f7 commit 856ec6c
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
import java.util.Set;
import java.util.concurrent.CopyOnWriteArraySet;

@CheckData(name = "Prediction (Debug)")
public class DebugHandler extends Check implements PostPredictionCheck {

Set<Player> listeners = new CopyOnWriteArraySet<>(new HashSet<>());
Expand Down Expand Up @@ -56,7 +55,7 @@ public void onPredictionComplete(final PredictionComplete predictionComplete) {
String a = color + "A: " + xColor + actually.getX() + " " + yColor + actually.getY() + " " + zColor + actually.getZ();
String canSkipTick = (player.couldSkipTick + " ").substring(0, 1);
String actualMovementSkip = (player.skippedTickInActualMovement + " ").substring(0, 1);
String o = ChatColor.GRAY + "" + canSkipTick + "→0.03→" + actualMovementSkip + color + " O: " + offset;
String o = ChatColor.GRAY + canSkipTick + "→0.03→" + actualMovementSkip + color + " O: " + offset;

String prefix = player.bukkitPlayer == null ? "null" : player.bukkitPlayer.getName() + " ";

Expand Down

0 comments on commit 856ec6c

Please sign in to comment.