diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-10-28 19:44:11 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-10-28 19:44:11 +0200 |
commit | b8bff2e2b2858b8f0136fe059cfae834f4a72936 (patch) | |
tree | a4f4cc80da1fbf94b4e2e54094f5c5cded7604d1 /src/main/java/at/hannibal2/skyhanni/config/features | |
parent | 5987dd18a6fc7709d079c81e2062c67b7e62581b (diff) | |
download | skyhanni-b8bff2e2b2858b8f0136fe059cfae834f4a72936.tar.gz skyhanni-b8bff2e2b2858b8f0136fe059cfae834f4a72936.tar.bz2 skyhanni-b8bff2e2b2858b8f0136fe059cfae834f4a72936.zip |
better description and code cleanup
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java | 14 |
1 files changed, 6 insertions, 8 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 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 |