aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/features
diff options
context:
space:
mode:
authorMTOnline69 <97001154+MTOnline69@users.noreply.github.com>2024-10-05 09:59:13 +0100
committerGitHub <noreply@github.com>2024-10-05 10:59:13 +0200
commit96599f69ea7f22289a74c5c5e931d1001d73e42f (patch)
tree42277ced0db0cfe404e6dd7d266c331cff71230e /src/main/java/at/hannibal2/skyhanni/config/features
parenta517ef456bde52aa391e31198c0facc87edaa7cf (diff)
downloadskyhanni-96599f69ea7f22289a74c5c5e931d1001d73e42f.tar.gz
skyhanni-96599f69ea7f22289a74c5c5e931d1001d73e42f.tar.bz2
skyhanni-96599f69ea7f22289a74c5c5e931d1001d73e42f.zip
Improvement: Option to hide other players while in Gunther's Race (#2655)
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/rift/area/westvillage/GunthersRaceConfig.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/rift/area/westvillage/GunthersRaceConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/rift/area/westvillage/GunthersRaceConfig.java
index beb4acc9e..10d18fa85 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/rift/area/westvillage/GunthersRaceConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/rift/area/westvillage/GunthersRaceConfig.java
@@ -30,4 +30,10 @@ public class GunthersRaceConfig {
@ConfigOption(name = "Monochrome Color", desc = "Set a boring monochrome color for the guide waypoints.")
@ConfigEditorColour
public Property<String> monochromeColor = Property.of("0:60:0:0:255");
+
+ @Expose
+ @ConfigOption(name = "Hide Other Players", desc = "Hide other players while in the race.")
+ @ConfigEditorBoolean
+ @FeatureToggle
+ public boolean hidePlayers = false;
}