diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-09-02 11:47:41 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-09-02 11:47:41 +0200 |
commit | 8f01f0252efde1718b77131ada1c60b387d2d09b (patch) | |
tree | 7223f8ff3447f72706b8962ff129e204dd337a3c /src/main/java/at/hannibal2 | |
parent | aa14f20e2e07bccd26e2e162648f97b4281e3f25 (diff) | |
download | skyhanni-8f01f0252efde1718b77131ada1c60b387d2d09b.tar.gz skyhanni-8f01f0252efde1718b77131ada1c60b387d2d09b.tar.bz2 skyhanni-8f01f0252efde1718b77131ada1c60b387d2d09b.zip |
Added qFeatureToggle to new features
Diffstat (limited to 'src/main/java/at/hannibal2')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java | 4 |
1 files changed, 3 insertions, 1 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 84a5977a8..0ee81c801 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java @@ -815,8 +815,9 @@ public class MiscConfig { public static class PowderTrackerConfig { @Expose - @ConfigOption(name = "Enabled", desc = "Enable the Powder Tracker overlay.") + @ConfigOption(name = "Enabled", desc = "Enable the Powder Tracker overlay for mining.") @ConfigEditorBoolean + @FeatureToggle public boolean enabled = false; @Expose @@ -1025,6 +1026,7 @@ public class MiscConfig { @Expose @ConfigOption(name = "Superpairs Clicks Alert", desc = "Display an alert when you reach the maximum clicks gained from Chronomatron or Ultrasequencer.") @ConfigEditorBoolean + @FeatureToggle public boolean superpairsClicksAlert = false; @Expose |