aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/features
diff options
context:
space:
mode:
authorJordan <77755681+Jordyrat@users.noreply.github.com>2024-06-01 11:11:05 +0100
committerGitHub <noreply@github.com>2024-06-01 12:11:05 +0200
commit00c5d1604662af31bfbd3ed151764c414437b721 (patch)
tree7a7687744feb5d4114f0b25451e8c3074c8e761c /src/main/java/at/hannibal2/skyhanni/config/features
parent00f544af46a2eb5ef4d385be3025838c511a334b (diff)
downloadskyhanni-00c5d1604662af31bfbd3ed151764c414437b721.tar.gz
skyhanni-00c5d1604662af31bfbd3ed151764c414437b721.tar.bz2
skyhanni-00c5d1604662af31bfbd3ed151764c414437b721.zip
Improvement: Compact Dicer Tracker (#1735)
Co-authored-by: BuildTools <unconfigured@null.spigotmc.org> Co-authored-by: Cal <cwolfson58@gmail.com> 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/garden/DicerRngDropTrackerConfig.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/garden/DicerRngDropTrackerConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/garden/DicerRngDropTrackerConfig.java
index c8ce586c7..55dab6c74 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/garden/DicerRngDropTrackerConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/garden/DicerRngDropTrackerConfig.java
@@ -6,6 +6,7 @@ import com.google.gson.annotations.Expose;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean;
import io.github.notenoughupdates.moulconfig.annotations.ConfigLink;
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;
+import io.github.notenoughupdates.moulconfig.observer.Property;
public class DicerRngDropTrackerConfig {
@Expose
@@ -15,6 +16,12 @@ public class DicerRngDropTrackerConfig {
public boolean display = true;
@Expose
+ @ConfigOption(name = "Compact Format", desc = "Compact the Dicer RNG Drop Tracker Display.")
+ @ConfigEditorBoolean
+ @FeatureToggle
+ public Property<Boolean> compact = Property.of(false);
+
+ @Expose
@ConfigOption(name = "Hide Chat", desc = "Hide the chat message when dropping a RNG Dicer drop.")
@ConfigEditorBoolean
@FeatureToggle