diff --git a/src/main/java/meteordevelopment/meteorclient/systems/config/Config.java b/src/main/java/meteordevelopment/meteorclient/systems/config/Config.java index acd6ac65b6..92239d2f5e 100644 --- a/src/main/java/meteordevelopment/meteorclient/systems/config/Config.java +++ b/src/main/java/meteordevelopment/meteorclient/systems/config/Config.java @@ -142,23 +142,6 @@ public class Config extends System { .build() ); - public final Setting heuristicCombatUtils = sgMisc.add(new BoolSetting.Builder() - .name("heuristic-damage-utils") - .description("Spends extra computation time in order to make combat-related calculations more accurate at the expense of framerate.") - .defaultValue(true) - .build() - ); - - public final Setting heuristicDepth = sgMisc.add(new IntSetting.Builder() - .name("heuristic-depth") - .description("The amount of extra computation time to give, in an exponential scale.") - .defaultValue(4) - .min(2) - .sliderRange(2, 5) - .visible(heuristicCombatUtils::get) - .build() - ); - public List dontShowAgainPrompts = new ArrayList<>(); public Config() {