diff --git a/src/main/java/me/rigamortis/seppuku/impl/module/combat/AutoClickerModule.java b/src/main/java/me/rigamortis/seppuku/impl/module/combat/AutoClickerModule.java index 73180a6..2deba67 100644 --- a/src/main/java/me/rigamortis/seppuku/impl/module/combat/AutoClickerModule.java +++ b/src/main/java/me/rigamortis/seppuku/impl/module/combat/AutoClickerModule.java @@ -20,9 +20,9 @@ import java.util.concurrent.ThreadLocalRandom; */ public final class AutoClickerModule extends Module { - private final Value clicksPerSecond = new Value("Speed", new String[]{"Speed", "S"}, "Clicks per second to automatically click.", 8.0f, 1.0f, 15.0f, 0.1f); - private final Value randomize = new Value("Randomize", new String[]{"Random", "R"}, "Randomizes the clicks per second.", true); - private final Value onlyWeapons = new Value("OnlyWeapons", new String[]{"OnlyWep", "OW"}, "When enabled, will only auto click with chosen held weapons.", true); + private final Value clicksPerSecond = new Value("Speed", new String[]{"Speed", "S"}, "Clicks per second to automatically click", 8.0f, 1.0f, 15.0f, 0.1f); + private final Value randomize = new Value("Randomize", new String[]{"Random", "R"}, "Randomizes the clicks per second", true); + private final Value onlyWeapons = new Value("OnlyWeapons", new String[]{"OnlyWep", "OW"}, "When enabled, will only auto click with chosen held weapons", true); private final Value> weapons = new Value>("Weapons", new String[]{"Wep", "Items", "WI", "I", "W"}, "Choose which items to automatically click with"); //private final Value humanize = new Value("Humanize", new String[]{"Human", "h"}, "Humanizes the clicks per second.", false);