now redundant

This commit is contained in:
Leijurv 2018-08-19 17:27:52 -07:00
parent e3f122c371
commit 519773493e
No known key found for this signature in database
GPG Key ID: 44A3EA646EADAC6A
1 changed files with 0 additions and 10 deletions

View File

@ -129,16 +129,6 @@ public class ExampleBaritoneControl extends Behavior {
event.cancel();
return;
}
if (msg.toLowerCase().startsWith("heuristic")) {
try {
double d = Double.parseDouble(msg.substring("heuristic".length()).trim());
Baritone.settings().costHeuristic.value = d;
} catch (NumberFormatException e) {
displayChatMessageRaw("Couldn't parse value");
}
event.cancel();
return;
}
List<Settings.Setting<Boolean>> toggleable = Baritone.settings().getByValueType(Boolean.class);
for (Settings.Setting<Boolean> setting : toggleable) {
if (msg.equalsIgnoreCase(setting.getName())) {