|
12 | 12 | import ac.grim.grimac.checks.impl.exploit.ExploitA;
|
13 | 13 | import ac.grim.grimac.checks.impl.exploit.ExploitB;
|
14 | 14 | import ac.grim.grimac.checks.impl.exploit.ExploitC;
|
15 |
| -import ac.grim.grimac.checks.impl.groundspoof.NoFallA; |
| 15 | +import ac.grim.grimac.checks.impl.groundspoof.NoFall; |
16 | 16 | import ac.grim.grimac.checks.impl.misc.ClientBrand;
|
17 | 17 | import ac.grim.grimac.checks.impl.misc.FastBreak;
|
18 | 18 | import ac.grim.grimac.checks.impl.misc.GhostBlockMitigation;
|
|
21 | 21 | import ac.grim.grimac.checks.impl.multiactions.*;
|
22 | 22 | import ac.grim.grimac.checks.impl.post.Post;
|
23 | 23 | import ac.grim.grimac.checks.impl.prediction.DebugHandler;
|
24 |
| -import ac.grim.grimac.checks.impl.prediction.NoFallB; |
| 24 | +import ac.grim.grimac.checks.impl.prediction.GroundSpoof; |
25 | 25 | import ac.grim.grimac.checks.impl.prediction.OffsetHandler;
|
26 | 26 | import ac.grim.grimac.checks.impl.prediction.Phase;
|
27 | 27 | import ac.grim.grimac.checks.impl.scaffolding.*;
|
@@ -78,7 +78,7 @@ public CheckManager(GrimPlayer player) {
|
78 | 78 | .put(ActionManager.class, player.actionManager)
|
79 | 79 | .put(TeamHandler.class, new TeamHandler(player))
|
80 | 80 | .put(ClientBrand.class, new ClientBrand(player))
|
81 |
| - .put(NoFallA.class, new NoFallA(player)) |
| 81 | + .put(NoFall.class, new NoFall(player)) |
82 | 82 | .put(BadPacketsO.class, new BadPacketsO(player))
|
83 | 83 | .put(BadPacketsA.class, new BadPacketsA(player))
|
84 | 84 | .put(BadPacketsB.class, new BadPacketsB(player))
|
@@ -132,7 +132,7 @@ public CheckManager(GrimPlayer player) {
|
132 | 132 | .put(GhostBlockDetector.class, new GhostBlockDetector(player))
|
133 | 133 | .put(Phase.class, new Phase(player))
|
134 | 134 | .put(Post.class, new Post(player))
|
135 |
| - .put(NoFallB.class, new NoFallB(player)) |
| 135 | + .put(GroundSpoof.class, new GroundSpoof(player)) |
136 | 136 | .put(OffsetHandler.class, new OffsetHandler(player))
|
137 | 137 | .put(SuperDebug.class, new SuperDebug(player))
|
138 | 138 | .put(DebugHandler.class, new DebugHandler(player))
|
@@ -326,8 +326,8 @@ public PacketEntityReplication getEntityReplication() {
|
326 | 326 | return packetEntityReplication;
|
327 | 327 | }
|
328 | 328 |
|
329 |
| - public NoFallA getNoFall() { |
330 |
| - return getPacketCheck(NoFallA.class); |
| 329 | + public NoFall getNoFall() { |
| 330 | + return getPacketCheck(NoFall.class); |
331 | 331 | }
|
332 | 332 |
|
333 | 333 | private CompensatedInventory inventory = null;
|
|
0 commit comments