Skip to content

Commit

Permalink
Remove forced line-break in damage indicator description
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander01998 committed Apr 8, 2022
1 parent faaf48a commit ddffc0e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/main/java/net/wurstclient/hacks/KillauraHack.java
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ public final class KillauraHack extends Hack
new SliderSetting("FOV", 360, 30, 360, 10, ValueDisplay.DEGREES);

private final CheckboxSetting damageIndicator = new CheckboxSetting(
"Damage indicator", "Renders a colored box within the target\n"
+ "inversely proportional to its remaining health.",
"Damage indicator",
"Renders a colored box within the target, inversely proportional to its remaining health.",
true);

private final CheckboxSetting filterPlayers = new CheckboxSetting(
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/net/wurstclient/hacks/KillauraLegitHack.java
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ public final class KillauraLegitHack extends Hack
new SliderSetting("FOV", 360, 30, 360, 10, ValueDisplay.DEGREES);

private final CheckboxSetting damageIndicator = new CheckboxSetting(
"Damage indicator", "Renders a colored box within the target\n"
+ "inversely proportional to its remaining health.",
"Damage indicator",
"Renders a colored box within the target, inversely proportional to its remaining health.",
true);

private final CheckboxSetting filterPlayers = new CheckboxSetting(
Expand Down

0 comments on commit ddffc0e

Please sign in to comment.