Skip to content

Commit

Permalink
Disable see-through mode by default and clarify that it still has som…
Browse files Browse the repository at this point in the history
…e downsides
  • Loading branch information
Alexander01998 committed Dec 26, 2023
1 parent 896d0b0 commit 993aa80
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/main/java/net/wurstclient/hacks/NameTagsHack.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,12 @@ public final class NameTagsHack extends Hack
new CheckboxSetting("Unlimited range",
"Removes the 64 block distance limit for nametags.", true);

private final CheckboxSetting seeThrough =
new CheckboxSetting("See-through mode",
"Renders nametags on the see-through text layer. This makes them"
+ " easier to read behind walls.",
true);
private final CheckboxSetting seeThrough = new CheckboxSetting(
"See-through mode",
"Renders nametags on the see-through text layer. This makes them"
+ " easier to read behind walls, but causes some graphical glitches"
+ " with water and other transparent things.",
false);

private final CheckboxSetting forceNametags = new CheckboxSetting(
"Force nametags",
Expand Down

0 comments on commit 993aa80

Please sign in to comment.