From bd13049b5033a8a4f3823290965e41633d7ca39a Mon Sep 17 00:00:00 2001 From: noil Date: Fri, 8 Oct 2021 18:17:28 -0400 Subject: [PATCH] CrystalAura: Typos --- .../seppuku/impl/module/combat/CrystalAuraModule.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/me/rigamortis/seppuku/impl/module/combat/CrystalAuraModule.java b/src/main/java/me/rigamortis/seppuku/impl/module/combat/CrystalAuraModule.java index c420579..0e69e0e 100644 --- a/src/main/java/me/rigamortis/seppuku/impl/module/combat/CrystalAuraModule.java +++ b/src/main/java/me/rigamortis/seppuku/impl/module/combat/CrystalAuraModule.java @@ -43,12 +43,12 @@ import java.util.concurrent.CopyOnWriteArrayList; public final class CrystalAuraModule extends Module { public final Value attack = new Value("Attack", new String[]{"AutoAttack"}, "Automatically attack crystals.", true); - public final Value attackRapid = new Value("AttackRapid", new String[]{"RapidAttack"}, "Rapidly place break crystals.", true); + public final Value attackRapid = new Value("AttackRapid", new String[]{"RapidAttack"}, "Rapidly break crystals (disables delay).", true); public final Value attackDelay = new Value("AttackDelay", new String[]{"AttackDelay", "AttackDel", "Del"}, "The delay to attack in milliseconds.", 50.0f, 0.0f, 500.0f, 1.0f); public final Value attackRadius = new Value("AttackRadius", new String[]{"ARange", "HitRange", "AttackDistance", "AttackRange", "ARadius"}, "The minimum range to attack crystals.", 5.0f, 0.0f, 7.0f, 0.1f); public final Value attackMaxDistance = new Value("AttackMaxDistance", new String[]{"AMaxRange", "MaxAttackRange", "AMaxRadius", "AMD", "AMR"}, "The max (block)distance an entity must be to the a crystal to begin attacking.", 14.0f, 1.0f, 20.0f, 1.0f); public final Value place = new Value("Place", new String[]{"AutoPlace"}, "Automatically place crystals.", true); - public final Value placeRapid = new Value("PlaceRapid", new String[]{"RapidPlace"}, "Rapidly place crystals.", true); + public final Value placeRapid = new Value("PlaceRapid", new String[]{"RapidPlace"}, "Rapidly place crystals (disables delay).", true); public final Value placeSpread = new Value("PlaceSpread", new String[]{"SpreadPlace"}, "Spread crystals around target by swapping place positions each time. (toggle on if target is running)", false); public final Value placeSpreadDistance = new Value("PlaceSpreadDistance", new String[]{"SpreadPlaceDistance", "SpreadDistance"}, "Distance (in blocks) to spread the crystals around the target.", 1.0f, 0.0f, 3.0f, 0.1f); public final Value placeDelay = new Value("PlaceDelay", new String[]{"PlaceDelay", "PlaceDel"}, "The delay to place crystals.", 50.0f, 0.0f, 500.0f, 1.0f);