Skip to content

Commit

Permalink
Disable Baritone since it's broken.
Browse files Browse the repository at this point in the history
Use a dedicated Baritone detection plugin if you want to detect it.
  • Loading branch information
SamB440 committed Aug 20, 2024
1 parent 1cb4687 commit 3d3d3d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import ac.grim.grimac.utils.data.HeadRotation;
import ac.grim.grimac.utils.math.GrimMath;

// This check has been patched by Baritone for a long time and it also seems to false with cinematic camera now, so it is disabled.
@CheckData(name = "Baritone")
public class Baritone extends Check implements RotationCheck {
public Baritone(GrimPlayer playerData) {
Expand Down
3 changes: 1 addition & 2 deletions src/main/java/ac/grim/grimac/manager/CheckManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import ac.grim.grimac.checks.impl.aim.AimModulo360;
import ac.grim.grimac.checks.impl.aim.processor.AimProcessor;
import ac.grim.grimac.checks.impl.badpackets.*;
import ac.grim.grimac.checks.impl.baritone.Baritone;
import ac.grim.grimac.checks.impl.combat.Reach;
import ac.grim.grimac.checks.impl.crash.*;
import ac.grim.grimac.checks.impl.exploit.ExploitA;
Expand Down Expand Up @@ -108,7 +107,7 @@ public CheckManager(GrimPlayer player) {
.put(AimProcessor.class, new AimProcessor(player))
.put(AimModulo360.class, new AimModulo360(player))
.put(AimDuplicateLook.class, new AimDuplicateLook(player))
.put(Baritone.class, new Baritone(player))
// .put(Baritone.class, new Baritone(player))
.build();
vehicleCheck = new ImmutableClassToInstanceMap.Builder<VehicleCheck>()
.put(VehiclePredictionRunner.class, new VehiclePredictionRunner(player))
Expand Down

0 comments on commit 3d3d3d5

Please sign in to comment.