Skip to content

Commit

Permalink
Improve FilterTradersSetting description
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander01998 committed Oct 11, 2023
1 parent 94af018 commit 5a8e023
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,8 @@ public static AnchorAuraFilterList create()
+ " \"ambient\" mobs when auto-placing anchors." + damageWarning,
true));

builder.add(new FilterTradersSetting(
"Won't target villagers, wandering traders, etc. when auto-placing anchors."
+ damageWarning,
builder.add(new FilterTradersSetting("Won't target villagers and"
+ " wandering traders when auto-placing anchors." + damageWarning,
true));

builder.add(new FilterGolemsSetting("Won't target iron golems and snow"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,8 @@ public static CrystalAuraFilterList create()
+ " \"ambient\" mobs when auto-placing crystals." + damageWarning,
true));

builder.add(new FilterTradersSetting(
"Won't target villagers, wandering traders, etc. when auto-placing crystals."
+ damageWarning,
builder.add(new FilterTradersSetting("Won't target villagers and"
+ " wandering traders when auto-placing crystals." + damageWarning,
true));

builder.add(new FilterGolemsSetting("Won't target iron golems and snow"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public static FollowFilterList create()
"Won't follow tamed wolves, tamed horses, etc.", true));

builder.add(new FilterTradersSetting(
"Won't follow villagers, wandering traders, etc.", true));
"Won't follow villagers and wandering traders.", true));

builder.add(new FilterGolemsSetting(
"Won't follow iron golems and snow golems.", true));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public static RemoteViewFilterList create()
"Won't view tamed wolves, tamed horses, etc.", true));

builder.add(new FilterTradersSetting(
"Won't view villagers, wandering traders, etc.", true));
"Won't view villagers and wandering traders.", true));

builder.add(new FilterGolemsSetting(
"Won't view iron golems and snow golems.", true));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ public boolean test(Entity e)
public static FilterTradersSetting genericCombat(boolean checked)
{
return new FilterTradersSetting(
"Won't attack villagers, wandering traders, etc.", checked);
"Won't attack villagers and wandering traders.", checked);
}

public static FilterTradersSetting genericVision(boolean checked)
{
return new FilterTradersSetting(
"Won't show villagers, wandering traders, etc.", checked);
"Won't show villagers and wandering traders.", checked);
}
}

0 comments on commit 5a8e023

Please sign in to comment.