aboutsummaryrefslogtreecommitdiff
path: root/src/main/java
diff options
context:
space:
mode:
authorNetheriteMiner <88792142+NetheriteMiner@users.noreply.github.com>2023-03-15 12:33:42 -0400
committerGitHub <noreply@github.com>2023-03-15 12:33:42 -0400
commit13d78d5c044a895acf43611f2d6521d9c0a84bd9 (patch)
tree86a9e1a176742c29f2f799b09065dfd513ebe4dd /src/main/java
parentb1a9af26d5bc88c49d0ab616678083f391a849e2 (diff)
downloadskyhanni-13d78d5c044a895acf43611f2d6521d9c0a84bd9.tar.gz
skyhanni-13d78d5c044a895acf43611f2d6521d9c0a84bd9.tar.bz2
skyhanni-13d78d5c044a895acf43611f2d6521d9c0a84bd9.zip
Periods, grammar, readability
Diffstat (limited to 'src/main/java')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/Minions.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Minions.java b/src/main/java/at/hannibal2/skyhanni/config/features/Minions.java
index d29eb45bd..31080839a 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/Minions.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/Minions.java
@@ -16,7 +16,7 @@ public class Minions {
public boolean lastClickedMinion = false;
@Expose
- @ConfigOption(name = "Last Minion Display", desc = "Marks the location of the last clicked minion (even through walls)")
+ @ConfigOption(name = "Last Minion Display", desc = "Marks the location of the last clicked minion, even through walls.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
public boolean lastClickedMinionDisplay = false;
@@ -24,7 +24,7 @@ public class Minions {
@Expose
@ConfigOption(
name = "Last Minion Color",
- desc = "The colour in which the last minion should be displayed"
+ desc = "The color in which the last minion should be displayed."
)
@ConfigEditorColour
@ConfigAccordionId(id = 0)
@@ -33,7 +33,7 @@ public class Minions {
@Expose
@ConfigOption(
name = "Last Minion Time",
- desc = "Time in seconds how long the last minion should be displayed"
+ desc = "Time in seconds how long the last minion should be displayed."
)
@ConfigEditorSlider(
minValue = 3,
@@ -56,7 +56,7 @@ public class Minions {
@Expose
@ConfigOption(
name = "Distance",
- desc = "At what distance is the minion display shown."
+ desc = "Maximum distance to display minion data."
)
@ConfigEditorSlider(
minValue = 3,
@@ -71,7 +71,7 @@ public class Minions {
public boolean hopperProfit = false;
@Expose
- @ConfigOption(name = "Hopper Profit Display", desc = "Using the held coins and the last empty time to calculate the coins a hopper collects in a day")
+ @ConfigOption(name = "Hopper Profit Display", desc = "Use the hopper's held coins and the last empty time to calculate the coins per day.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 2)
public boolean hopperProfitDisplay = true;
@@ -83,7 +83,7 @@ public class Minions {
public Position hopperProfitPos = new Position(10, 10, false, true);
@Expose
- @ConfigOption(name = "Hide Mob Nametag", desc = "Hiding the nametag of mobs close to minions")
+ @ConfigOption(name = "Hide Mob Nametag", desc = "Hiding the nametag of mobs close to minions.")
@ConfigEditorBoolean
public boolean hideMobsNametagNearby = false;
}