Skip to content

Commit

Permalink
remove unused settings
Browse files Browse the repository at this point in the history
  • Loading branch information
Wide-Cat committed Aug 10, 2024
1 parent d5763da commit a20389b
Showing 1 changed file with 0 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -142,23 +142,6 @@ public class Config extends System<Config> {
.build()
);

public final Setting<Boolean> 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<Integer> 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<String> dontShowAgainPrompts = new ArrayList<>();

public Config() {
Expand Down

0 comments on commit a20389b

Please sign in to comment.