aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-05-01 18:58:23 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-05-01 18:58:23 +0200
commit70e1bcea4718a325fc23b8e926e4ec998482b396 (patch)
tree1e086473c096c9b567bb63bc7d8817cb14f5c2c4 /src/main/java/at/hannibal2/skyhanni/config
parent18245e2630bfb8242d4519d2b17bf6243808e081 (diff)
downloadSkyHanni-70e1bcea4718a325fc23b8e926e4ec998482b396.tar.gz
SkyHanni-70e1bcea4718a325fc23b8e926e4ec998482b396.tar.bz2
SkyHanni-70e1bcea4718a325fc23b8e926e4ec998482b396.zip
Added chum bucket hider
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/Fishing.java24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Fishing.java b/src/main/java/at/hannibal2/skyhanni/config/features/Fishing.java
index 096c03f39..58fa58a84 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/Fishing.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/Fishing.java
@@ -3,6 +3,7 @@ package at.hannibal2.skyhanni.config.features;
import at.hannibal2.skyhanni.config.core.config.Position;
import com.google.gson.annotations.Expose;
import io.github.moulberry.moulconfig.annotations.*;
+import io.github.moulberry.moulconfig.observer.Property;
public class Fishing {
@@ -97,6 +98,29 @@ public class Fishing {
public int barnTimerAlertTime = 330;
@Expose
+ @ConfigOption(name = "Chum Bucket Hider", desc = "")
+ @Accordion
+ public ChumBucketHider chumBucketHider = new ChumBucketHider();
+
+ public static class ChumBucketHider {
+
+ @Expose
+ @ConfigOption(name = "Enable", desc = "Hide the Chum Bucket name tags for other players.")
+ @ConfigEditorBoolean
+ public Property<Boolean> enabled = Property.of(true);
+
+ @Expose
+ @ConfigOption(name = "Hide Bucket", desc = "Hide the Chum Bucket.")
+ @ConfigEditorBoolean
+ public Property<Boolean> hideBucket = Property.of(false);
+
+ @Expose
+ @ConfigOption(name = "Hide Own", desc = "Hides your own Chum Bucket.")
+ @ConfigEditorBoolean
+ public Property<Boolean> hideOwn = Property.of(false);
+ }
+
+ @Expose
@ConfigOption(
name = "Shark Fish Counter",
desc = "Counts how many sharks have been caught."