Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public class HUD extends Module {
public final BooleanSetting brand = add(new BooleanSetting("Brand", false));
public final BooleanSetting potions = add(new BooleanSetting("Potions", true));
public final BooleanSetting coords = add(new BooleanSetting("Coords", true));
private final SliderSetting pulseSpeed = add(new SliderSetting("Speed", 1, 0, 5, 0.1));
private final SliderSetting pulseSpeed = add(new SliderSetting("PulseSpeed", 1, 0, 5, 0.1));
private final SliderSetting pulseCounter = add(new SliderSetting("Counter", 10, 1, 50));
public HUD() {
super("HUD", Category.Client);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@ public Burrow() {

@Override
public void onUpdate() {
if (disable.getValue()) {
wait.setValue(false);
}
if (Alien.PLAYER.isInWeb(mc.player)) {
webTimer.reset();
return;
Expand Down