aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorIceshadow1404 <50039154+Iceshadow1404@users.noreply.github.com>2024-06-09 22:38:54 +0200
committerGitHub <noreply@github.com>2024-06-09 22:38:54 +0200
commitb1ff611e4f764c5fba338571540f0ad2389994ac (patch)
treed0d9c856bda7f2501e624eb5f586ba5492192db8 /src/main/java/at/hannibal2/skyhanni/config
parent32806b65dc90301b33591a631fd3b4a9ffacf229 (diff)
downloadskyhanni-b1ff611e4f764c5fba338571540f0ad2389994ac.tar.gz
skyhanni-b1ff611e4f764c5fba338571540f0ad2389994ac.tar.bz2
skyhanni-b1ff611e4f764c5fba338571540f0ad2389994ac.zip
Improvement: Add an exclude dungeon toggle to hide far entities (#2036)
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/misc/HideFarEntitiesConfig.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/misc/HideFarEntitiesConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/misc/HideFarEntitiesConfig.java
index 2ac5ad4ed..3ae186395 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/misc/HideFarEntitiesConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/misc/HideFarEntitiesConfig.java
@@ -27,4 +27,9 @@ public class HideFarEntitiesConfig {
@ConfigOption(name = "Exclude Garden", desc = "Disable this feature while in the Garden.")
@ConfigEditorBoolean
public boolean excludeGarden = false;
+
+ @Expose
+ @ConfigOption(name = "Exclude Dungeon", desc = "Disable this feature while in Dungeon.")
+ @ConfigEditorBoolean
+ public boolean excludeDungeon = false;
}