Skip to content

Commit 423f2d0

Browse files
committed
remove redundant configName declarations
1 parent 9a0ec5d commit 423f2d0

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

src/main/java/ac/grim/grimac/checks/impl/combat/Reach.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
import java.util.*;
4141

4242
// You may not copy the check unless you are licensed under GPL
43-
@CheckData(name = "Reach", configName = "Reach", setback = 10)
43+
@CheckData(name = "Reach", setback = 10)
4444
public class Reach extends Check implements PacketCheck {
4545
// Only one flag per reach attack, per entity, per tick.
4646
// We store position because lastX isn't reliable on teleports.

src/main/java/ac/grim/grimac/checks/impl/groundspoof/NoFallA.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
// Catches NoFalls for LOOK and GROUND packets
1919
// This check runs AFTER the predictions
20-
@CheckData(name = "NoFall", configName = "nofall", setback = 10)
20+
@CheckData(name = "NoFall", setback = 10)
2121
public class NoFallA extends Check implements PacketCheck {
2222

2323
public boolean flipPlayerGroundStatus = false;

src/main/java/ac/grim/grimac/checks/impl/movement/EntityControl.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import ac.grim.grimac.checks.type.PostPredictionCheck;
66
import ac.grim.grimac.player.GrimPlayer;
77

8-
@CheckData(name = "Entity control", configName = "EntityControl")
8+
@CheckData(name = "EntityControl")
99
public class EntityControl extends Check implements PostPredictionCheck {
1010
public EntityControl(GrimPlayer player) {
1111
super(player);

src/main/java/ac/grim/grimac/checks/impl/movement/NegativeTimerCheck.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import ac.grim.grimac.utils.anticheat.update.PredictionComplete;
88
import com.github.retrooper.packetevents.event.PacketReceiveEvent;
99

10-
@CheckData(name = "NegativeTimer", configName = "NegativeTimer", setback = -1, experimental = true)
10+
@CheckData(name = "NegativeTimer", setback = -1, experimental = true)
1111
public class NegativeTimerCheck extends TimerCheck implements PostPredictionCheck {
1212

1313
public NegativeTimerCheck(GrimPlayer player) {

src/main/java/ac/grim/grimac/checks/impl/prediction/NoFallB.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import com.github.retrooper.packetevents.manager.server.ServerVersion;
1010
import com.github.retrooper.packetevents.protocol.player.GameMode;
1111

12-
@CheckData(name = "GroundSpoof", configName = "GroundSpoof", setback = 10, decay = 0.01)
12+
@CheckData(name = "GroundSpoof", setback = 10, decay = 0.01)
1313
public class NoFallB extends Check implements PostPredictionCheck {
1414

1515
public NoFallB(GrimPlayer player) {

src/main/java/ac/grim/grimac/checks/impl/prediction/OffsetHandler.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
import java.util.concurrent.atomic.AtomicInteger;
1313

14-
@CheckData(name = "Simulation", configName = "Simulation", decay = 0.02)
14+
@CheckData(name = "Simulation", decay = 0.02)
1515
public class OffsetHandler extends Check implements PostPredictionCheck {
1616
// Config
1717
double setbackDecayMultiplier;

src/main/java/ac/grim/grimac/checks/impl/prediction/Phase.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import java.util.ArrayList;
1616
import java.util.List;
1717

18-
@CheckData(name = "Phase", configName = "Phase", setback = 1, decay = 0.005)
18+
@CheckData(name = "Phase", setback = 1, decay = 0.005)
1919
public class Phase extends Check implements PostPredictionCheck {
2020
SimpleCollisionBox oldBB;
2121

0 commit comments

Comments
 (0)