From b8bff2e2b2858b8f0136fe059cfae834f4a72936 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Sat, 28 Oct 2023 19:44:11 +0200 Subject: better description and code cleanup --- .../at/hannibal2/skyhanni/config/features/MiscConfig.java | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'src/main/java/at/hannibal2/skyhanni/config/features') 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 5f21de197..86f60a8f7 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java @@ -496,17 +496,16 @@ public class MiscConfig { @Accordion public ArrowTrailConfig arrowTrailConfig = new ArrowTrailConfig(); - public static class ArrowTrailConfig{ + public static class ArrowTrailConfig { @Expose - @ConfigOption(name = "Enabled", desc = "Draw a colored line behind the player.") + @ConfigOption(name = "Enabled", desc = "Draw a colored line behind arrows in the air.") @ConfigEditorBoolean @FeatureToggle public boolean enabled = false; @Expose - @ConfigOption(name = "Hide Nonplayer Arrows", desc = "Only shows the arrows the player has shot") + @ConfigOption(name = "Hide Nonplayer Arrows", desc = "Only shows for arrows the player has shot.") @ConfigEditorBoolean - @FeatureToggle public boolean hideOtherArrows = true; @Expose @@ -515,19 +514,18 @@ public class MiscConfig { public String arrowColor = "0:200:85:255:85"; @Expose - @ConfigOption(name = "Player Arrows", desc = "Different Color for arrow that you have shot") + @ConfigOption(name = "Player Arrows", desc = "Different color for the line of arrows that you have shot.") @ConfigEditorBoolean - @FeatureToggle public boolean handlePlayerArrowsDifferently = false; @Expose - @ConfigOption(name = "Player Arrow Color", desc = "Color of the line.") + @ConfigOption(name = "Player Arrow Color", desc = "Color of the line of your own arrows.") @ConfigEditorColour public String playerArrowColor = "0:200:85:255:255"; @Expose @ConfigOption(name = "Time Alive", desc = "Time in seconds until the trail fades out.") - @ConfigEditorSlider(minStep = 0.1f, minValue = 0.1f, maxValue = 30) + @ConfigEditorSlider(minStep = 0.1f, minValue = 0.1f, maxValue = 10) public float secondsAlive = 0.5f; @Expose -- cgit