mirror of
https://github.com/funkemunky/KauriV3.git
synced 2026-06-02 14:32:17 +00:00
Removing aim debug
This commit is contained in:
@@ -12,9 +12,7 @@ import lombok.val;
|
||||
import net.md_5.bungee.api.chat.HoverEvent;
|
||||
import net.md_5.bungee.api.chat.TextComponent;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.UUID;
|
||||
import java.util.*;
|
||||
|
||||
@Getter
|
||||
public abstract class Check {
|
||||
@@ -28,6 +26,8 @@ public abstract class Check {
|
||||
|
||||
public static List<UUID> alertsEnabled = new ArrayList<>();
|
||||
|
||||
public static final Map<String, List<UUID>> debugInstances = new HashMap<>();
|
||||
|
||||
public Check(APlayer player) {
|
||||
this.player = player;
|
||||
this.checkData = getClass().getAnnotation(CheckData.class);
|
||||
@@ -47,6 +47,10 @@ public abstract class Check {
|
||||
.replace("%vl%", String.valueOf(MathUtils.round(vl, 1)));
|
||||
}
|
||||
|
||||
public void debug(String information, Object... variables) {
|
||||
|
||||
}
|
||||
|
||||
public void flag(String information, Object... variables) {
|
||||
vl++;
|
||||
if(System.currentTimeMillis() - lastFlagRun < 50L) return;
|
||||
|
||||
@@ -40,7 +40,6 @@ public class Aim extends Check {
|
||||
|
||||
if(deltaX > 200 || deltaY > 200) {
|
||||
if(buffer > 0) buffer--;
|
||||
getPlayer().getBukkitPlayer().sendMessage("Unstable");
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user