diff options
| author | Lorenz <ESs95s3P5z8Pheb> | 2022-07-14 11:11:16 +0200 |
|---|---|---|
| committer | Lorenz <ESs95s3P5z8Pheb> | 2022-07-14 11:11:16 +0200 |
| commit | 26c36ab5f0135b50dbe0a983023d80504e2f66b4 (patch) | |
| tree | e140c4621489e065eade0e7af3c0e5213cd5f259 /src/main/java/at/lorenz/mod/config | |
| parent | d883b82223a189762c40014ed7dfc640cc06c1c3 (diff) | |
| download | skyhanni-26c36ab5f0135b50dbe0a983023d80504e2f66b4.tar.gz skyhanni-26c36ab5f0135b50dbe0a983023d80504e2f66b4.tar.bz2 skyhanni-26c36ab5f0135b50dbe0a983023d80504e2f66b4.zip | |
add ignore guardian feature
Diffstat (limited to 'src/main/java/at/lorenz/mod/config')
| -rw-r--r-- | src/main/java/at/lorenz/mod/config/Features.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main/java/at/lorenz/mod/config/Features.java b/src/main/java/at/lorenz/mod/config/Features.java index 2cc8f6535..917ab3483 100644 --- a/src/main/java/at/lorenz/mod/config/Features.java +++ b/src/main/java/at/lorenz/mod/config/Features.java @@ -161,6 +161,11 @@ public class Features { @ConfigOption(name = "Clean End", desc = "Hide entities and particles after the boss in Floor 1 - 6 has died.") @ConfigEditorBoolean public boolean cleanEnd = false; + + @Expose + @ConfigOption(name = "Ignore Guardians", desc = "Ignore F3 and M3 guardians from the clean end feature when sneaking. Makes it easier to kill them after the boss died already. Thanks hypixel.") + @ConfigEditorBoolean + public boolean cleanEndF3IgnoreGuardians = false; } public static class Items { |
