0
0
mirror of https://github.com/Wurst-Imperium/Wurst7.git synced 2024-09-20 01:12:13 +02:00

Improve HackListOtf descriptions

This commit is contained in:
Alexander01998 2021-11-15 19:12:54 +01:00
parent efc2e6f6be
commit 3e6139001b
2 changed files with 14 additions and 10 deletions

View File

@ -30,26 +30,29 @@ public final class HackListOtf extends OtherFeature
+ "\u00a7lHidden\u00a7r mode renders nothing.",
Mode.values(), Mode.AUTO);
private final EnumSetting<Position> position =
new EnumSetting<>("Position", Position.values(), Position.LEFT);
private final EnumSetting<Position> position = new EnumSetting<>("Position",
"Which side of the screen the HackList should be shown on."
+ "\nChange this to \u00a7lRight\u00a7r when using TabGUI.",
Position.values(), Position.LEFT);
private final EnumSetting<SortBy> sortBy =
new EnumSetting<>("Sort by", SortBy.values(), SortBy.NAME);
private final EnumSetting<SortBy> sortBy = new EnumSetting<>("Sort by",
"Determines how the HackList entries are sorted.\n"
+ "Only visible when \u00a76Mode\u00a7r is set to \u00a76Auto\u00a7r.",
SortBy.values(), SortBy.NAME);
private final CheckboxSetting revSort =
new CheckboxSetting("Reverse sorting", false);
private final CheckboxSetting animations =
new CheckboxSetting("Animations", true);
private final CheckboxSetting animations = new CheckboxSetting("Animations",
"When enabled, entries slide into and out of the HackList as hacks are enabled and disabled.",
true);
private SortBy prevSortBy;
private Boolean prevRevSort;
public HackListOtf()
{
super("HackList", "Shows a list of active hacks on the screen.\n"
+ "The \u00a7lLeft\u00a7r position should only be used while TabGUI is\n"
+ "disabled.");
super("HackList", "Shows a list of active hacks on the screen.");
addSetting(mode);
addSetting(position);

View File

@ -23,7 +23,8 @@ public final class TabGuiOtf extends OtherFeature
public TabGuiOtf()
{
super("TabGUI", "Allows you to quickly toggle hacks while playing.\n"
+ "Use the arrow keys to navigate.");
+ "Use the arrow keys to navigate.\n\n"
+ "Change the \u00a76HackList \u00a76Position\u00a7r setting to \u00a76Right\u00a7r to prevent TabGUI from overlapping with the HackList.");
addSetting(status);
}