aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/features
diff options
context:
space:
mode:
authorCalMWolfs <94038482+CalMWolfs@users.noreply.github.com>2024-04-23 17:30:45 +1000
committerGitHub <noreply@github.com>2024-04-23 09:30:45 +0200
commit4ab19885da1b16862b13fa1ce1d5a2aa4a478795 (patch)
tree89f83bfe062b42e84ce1bbd68932832d39032b15 /src/main/java/at/hannibal2/skyhanni/config/features
parentfc19e6b99f4a8b97300b98d14222fb22fbb7fbd0 (diff)
downloadskyhanni-4ab19885da1b16862b13fa1ce1d5a2aa4a478795.tar.gz
skyhanni-4ab19885da1b16862b13fa1ce1d5a2aa4a478795.tar.bz2
skyhanni-4ab19885da1b16862b13fa1ce1d5a2aa4a478795.zip
Feature: Hoppety rabbit collection stats (#1482)
Co-authored-by: Thunderblade73 <85900443+Thunderblade73@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/event/ChocolateFactoryConfig.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/event/ChocolateFactoryConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/event/ChocolateFactoryConfig.java
index ad129e0e3..669184a9e 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/event/ChocolateFactoryConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/event/ChocolateFactoryConfig.java
@@ -85,6 +85,16 @@ public class ChocolateFactoryConfig {
public int barnCapacityThreshold = 6;
@Expose
+ @ConfigOption(name = "Hoppity Collection Stats", desc = "Shows info about your hoppity rabbit collection.")
+ @ConfigEditorBoolean
+ @FeatureToggle
+ public boolean hoppityCollectionStats = true;
+
+ @Expose
@ConfigLink(owner = ChocolateFactoryConfig.class, field = "statsDisplay")
public Position position = new Position(183, 160, false, true);
+
+ @Expose
+ @ConfigLink(owner = ChocolateFactoryConfig.class, field = "hoppityCollectionStats")
+ public Position hoppityStatsPosition = new Position(183, 160, false, true);
}