aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2
diff options
context:
space:
mode:
authorrdbt <87152661+rdbtCVS@users.noreply.github.com>2024-09-24 17:37:26 +0100
committerGitHub <noreply@github.com>2024-09-24 18:37:26 +0200
commit94e1e1fedf31f3e64856003075379867ebd7c18a (patch)
tree9f726c50430e07a323221c8fb8bfbb6b55ab3ea7 /src/main/java/at/hannibal2
parent624b029f2c7f958c85efcbb6c8963ec1d14df297 (diff)
downloadskyhanni-94e1e1fedf31f3e64856003075379867ebd7c18a.tar.gz
skyhanni-94e1e1fedf31f3e64856003075379867ebd7c18a.tar.bz2
skyhanni-94e1e1fedf31f3e64856003075379867ebd7c18a.zip
Get rid of the british (#2585)
Diffstat (limited to 'src/main/java/at/hannibal2')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/dungeon/ObjectHighlighterConfig.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/dungeon/ObjectHighlighterConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/dungeon/ObjectHighlighterConfig.java
index 385c162c6..a1c29cd44 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/dungeon/ObjectHighlighterConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/dungeon/ObjectHighlighterConfig.java
@@ -14,13 +14,13 @@ public class ObjectHighlighterConfig {
// TODO move some stuff from DungeonConfig into this
@Expose
- @ConfigOption(name = "Stared", desc = "")
+ @ConfigOption(name = "Starred Mobs", desc = "")
@Accordion
public StarredConfig starred = new StarredConfig();
public static class StarredConfig {
@Expose
- @ConfigOption(name = "Highlight Starred", desc = "Highlights all starred mobs in one colour.")
+ @ConfigOption(name = "Highlight Starred", desc = "Highlights starred mobs in a color.")
@ConfigEditorBoolean
@FeatureToggle
public Property<Boolean> highlight = Property.of(true);
@@ -40,7 +40,7 @@ public class ObjectHighlighterConfig {
public String info;
@Expose
- @ConfigOption(name = "Colour", desc = "Color in which the stared mobs are highlighted.")
+ @ConfigOption(name = "Color", desc = "The color used to highlight starred mobs.")
@ConfigEditorColour
public Property<String> colour = Property.of("0:60:255:255:0");
}
@@ -53,18 +53,18 @@ public class ObjectHighlighterConfig {
public static class FelConfig {
@Expose
- @ConfigOption(name = "Highlight Fels Skull", desc = "Highlights fels that are not yet active.")
+ @ConfigOption(name = "Highlight Fels Skull", desc = "Highlights fels that are not active.")
@ConfigEditorBoolean
@FeatureToggle
public Property<Boolean> highlight = Property.of(true);
@Expose
- @ConfigOption(name = "Draw Line", desc = "Draws a line to fels skulls. Works only if the highlight is enabled.")
+ @ConfigOption(name = "Draw Line", desc = "Draws a line to fels skulls. Requires highlight to be enabled.")
@ConfigEditorBoolean
public Boolean line = false;
@Expose
- @ConfigOption(name = "Colour", desc = "Color for the fel skull and line.")
+ @ConfigOption(name = "Color", desc = "The color used to highlight fel skulls and draw the line.")
@ConfigEditorColour
public Property<String> colour = Property.of("0:200:255:0:255");
}