diff options
author | hannibal2 <24389977+hannibal002@users.noreply.github.com> | 2024-08-26 02:46:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-26 02:46:23 +0200 |
commit | 03a1d0eeaca98c004dee6e8eacf3be0c73090be1 (patch) | |
tree | 40505f19a011400bde0afe508bfab007833fee53 /src/main | |
parent | a658f0f272c25d50ce3c572c388e07895735bd48 (diff) | |
download | skyhanni-03a1d0eeaca98c004dee6e8eacf3be0c73090be1.tar.gz skyhanni-03a1d0eeaca98c004dee6e8eacf3be0c73090be1.tar.bz2 skyhanni-03a1d0eeaca98c004dee6e8eacf3be0c73090be1.zip |
Improvement: Wording in config, dev options (#2397)
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main')
5 files changed, 11 insertions, 4 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/combat/damageindicator/DamageIndicatorConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/combat/damageindicator/DamageIndicatorConfig.java index 7e44df7f9..7010c7d35 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/combat/damageindicator/DamageIndicatorConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/combat/damageindicator/DamageIndicatorConfig.java @@ -171,7 +171,8 @@ public class DamageIndicatorConfig { public boolean hideVanillaNametag = false; @Expose - @ConfigOption(name = "Time to Kill", desc = "Show the time it takes to kill the slayer boss.") + @ConfigOption(name = "Time to Kill", desc = "Show the time it takes to kill the slayer boss.\n" + + "§eRequires Damage Indicator to be active.") @ConfigEditorBoolean public boolean timeToKillSlayer = true; diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/dev/DevConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/dev/DevConfig.java index a42da18c1..b62c88efc 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/dev/DevConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/dev/DevConfig.java @@ -1,5 +1,6 @@ package at.hannibal2.skyhanni.config.features.dev; +import at.hannibal2.skyhanni.config.FeatureToggle; import at.hannibal2.skyhanni.config.core.config.Position; import at.hannibal2.skyhanni.config.features.dev.minecraftconsole.MinecraftConsoleConfig; import com.google.gson.annotations.Expose; @@ -72,6 +73,7 @@ public class DevConfig { "§eThose are the folks that coded the mod for you for free :)" ) @ConfigEditorBoolean + @FeatureToggle public boolean fancyContributors = true; @Expose @@ -80,6 +82,7 @@ public class DevConfig { desc = "Makes SkyHanni contributors' nametags fancy too. " ) @ConfigEditorBoolean + @FeatureToggle public boolean contributorNametags = true; @Expose @@ -87,6 +90,7 @@ public class DevConfig { name = "Flip Contributors", desc = "Make SkyHanni contributors appear upside down in the world.") @ConfigEditorBoolean + @FeatureToggle public boolean flipContributors = true; @Expose diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/event/bingo/BingoCardConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/event/bingo/BingoCardConfig.java index b317f979a..cd7a41558 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/event/bingo/BingoCardConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/event/bingo/BingoCardConfig.java @@ -16,7 +16,7 @@ public class BingoCardConfig { public boolean enabled = true; @Expose - @ConfigOption(name = "Quick Toggle", desc = "Quickly toggle the Bingo Card or the step helper by sneaking with SkyBlock Menu in hand.") + @ConfigOption(name = "Quick Toggle", desc = "Quickly show/hide the Bingo Card (when enabled above) or the step helper by sneaking with SkyBlock Menu in hand.") @ConfigEditorBoolean public boolean quickToggle = true; diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/event/diana/DianaConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/event/diana/DianaConfig.java index 132c0d827..3e2c6724d 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/event/diana/DianaConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/event/diana/DianaConfig.java @@ -36,7 +36,8 @@ public class DianaConfig { public boolean burrowsNearbyDetection = false; @Expose - @ConfigOption(name = "Line To Next", desc = "Show a line to the closest burrow or guess location.") + @ConfigOption(name = "Line To Next", desc = "Show a line to the closest burrow or guess location.\n" + + "§eRequires Burrow particle detection.") @ConfigEditorBoolean public boolean lineToNext = true; diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/fishing/TotemOfCorruptionConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/fishing/TotemOfCorruptionConfig.java index c1454b8f1..783f6474c 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/fishing/TotemOfCorruptionConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/fishing/TotemOfCorruptionConfig.java @@ -29,7 +29,8 @@ public class TotemOfCorruptionConfig { public int distanceThreshold = 16; @Expose - @ConfigOption(name = "Hide Particles", desc = "Hide the particles of the Totem of Corruption.") + @ConfigOption(name = "Hide Particles", desc = "Hide the particles of the Totem of Corruption.\n" + + "§eRequires the Overlay to be active.") @ConfigEditorBoolean public boolean hideParticles = true; |