Skip to content

Commit ba2ccba

Browse files
committed
KillAura - make the 'Shield Mode' setting always visible and update its description
1 parent de044a5 commit ba2ccba

File tree

1 file changed

+7
-3
lines changed
  • src/main/java/meteordevelopment/meteorclient/systems/modules/combat

1 file changed

+7
-3
lines changed

src/main/java/meteordevelopment/meteorclient/systems/modules/combat/KillAura.java

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,13 @@ public class KillAura extends Module {
9393

9494
private final Setting<ShieldMode> shieldMode = sgGeneral.add(new EnumSetting.Builder<ShieldMode>()
9595
.name("shield-mode")
96-
.description("Will try and use an axe to break target shields.")
97-
.defaultValue(ShieldMode.Break)
98-
.visible(autoSwitch::get)
96+
.description("""
97+
What to do when your target is blocking with a shield:
98+
- Ignore: Don't attack them if they are blocking
99+
- Break: Swap to an axe to disable the shield (Only if Auto Switch is enabled)
100+
- None: Attack them as normal
101+
""")
102+
.defaultValue(ShieldMode.None)
99103
.build()
100104
);
101105

0 commit comments

Comments
 (0)