diff options
author | Eric W <42985687+ericpretzel@users.noreply.github.com> | 2023-09-02 01:24:51 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-02 10:24:51 +0200 |
commit | aadd078953fbe7dad281d61fdad7504eaf196053 (patch) | |
tree | 17e4ea0aa21b7764b8449089756d99be17cf2349 /src/main/java/at/hannibal2/skyhanni/config/features | |
parent | 842a02b0c7a43a9157f220e5ca3f071f7c6be711 (diff) | |
download | skyhanni-aadd078953fbe7dad281d61fdad7504eaf196053.tar.gz skyhanni-aadd078953fbe7dad281d61fdad7504eaf196053.tar.bz2 skyhanni-aadd078953fbe7dad281d61fdad7504eaf196053.zip |
feat: show alert when reaching max superpairs clicks (#413)
Show alert when reaching max super-pairs clicks #413
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java index 9a4d7565a..6a8bc4576 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java @@ -952,6 +952,11 @@ public class MiscConfig { public boolean accountUpgradeReminder = true; @Expose + @ConfigOption(name = "Superpairs Clicks Alert", desc = "Display an alert when you reach the maximum clicks gained from Chronomatron or Ultrasequencer.") + @ConfigEditorBoolean + public boolean superpairsClicksAlert = false; + + @Expose @ConfigOption(name = "Config Button", desc = "Add a button to the pause menu to configure SkyHanni.") @ConfigEditorBoolean @FeatureToggle |