We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de044a5 commit ba2ccbaCopy full SHA for ba2ccba
src/main/java/meteordevelopment/meteorclient/systems/modules/combat/KillAura.java
@@ -93,9 +93,13 @@ public class KillAura extends Module {
93
94
private final Setting<ShieldMode> shieldMode = sgGeneral.add(new EnumSetting.Builder<ShieldMode>()
95
.name("shield-mode")
96
- .description("Will try and use an axe to break target shields.")
97
- .defaultValue(ShieldMode.Break)
98
- .visible(autoSwitch::get)
+ .description("""
+ What to do when your target is blocking with a shield:
+ - 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)
103
.build()
104
);
105
0 commit comments