aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-07-19 19:44:23 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-07-19 19:44:23 +0200
commit2f820c489b61634967be9608a44564d113ae6510 (patch)
tree3373e6f9ed64ac25b38541f5244ba3dd4ef2ced0 /src/main/java/at/hannibal2/skyhanni/config
parent4f51a13e699fd35acf6ca4c72db8bd1b103788c8 (diff)
downloadskyhanni-2f820c489b61634967be9608a44564d113ae6510.tar.gz
skyhanni-2f820c489b61634967be9608a44564d113ae6510.tar.bz2
skyhanni-2f820c489b61634967be9608a44564d113ae6510.zip
reworked EndermanSlayerFeatures.kt
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/Features.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/SlayerConfig.java (renamed from src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java)10
2 files changed, 6 insertions, 6 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/Features.java b/src/main/java/at/hannibal2/skyhanni/config/Features.java
index a680c806d..88a60c8ef 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/Features.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/Features.java
@@ -89,7 +89,7 @@ public class Features extends Config {
@Expose
@Category(name = "Slayer", desc = "Slayer features.")
- public Slayer slayer = new Slayer();
+ public SlayerConfig slayer = new SlayerConfig();
@Expose
@Category(name = "Diana", desc = "Diana's mythological event.")
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java b/src/main/java/at/hannibal2/skyhanni/config/features/SlayerConfig.java
index 55b6059c9..e3aa63c89 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/SlayerConfig.java
@@ -4,7 +4,7 @@ import at.hannibal2.skyhanni.config.core.config.Position;
import com.google.gson.annotations.Expose;
import io.github.moulberry.moulconfig.annotations.*;
-public class Slayer {
+public class SlayerConfig {
@Expose
@ConfigOption(name = "Enderman Slayer Features", desc = "")
@@ -12,22 +12,22 @@ public class Slayer {
public boolean enderman = false;
@Expose
- @ConfigOption(name = "Enderman Beacon", desc = "Highlight the enderman slayer Yang Glyph (Beacon) in red color. Supports beacon in hand and beacon flying.")
+ @ConfigOption(name = "Highlight Yang Glyph", desc = "Highlight the enderman slayer Yang Glyph (beacon) in red color. Supports beacon in hand and beacon flying.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
public boolean slayerEndermanBeacon = false;
@Expose
- @ConfigOption(name = "Enderman Beacon Warnig", desc = "Displays a warning mid-screen then the enderman Slayer throws a Yang Glyph (beacon).")
+ @ConfigOption(name = "Beacon Warning", desc = "Displays a warning mid-screen then the enderman Slayer throws a Yang Glyph (beacon).")
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
public boolean slayerEndermanBeaconWaring = false;
@Expose
- @ConfigOption(name = "Enderman Highlight Nukekebi Skulls", desc = "Highlights the enderman Slayer Nukekebi Skulls.")
+ @ConfigOption(name = "Highlight Nukekebi Skulls", desc = "Highlights the enderman Slayer Nukekebi Skulls.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
- public boolean slayerEndermanHighlightNukekebiSkulls = false;
+ public boolean endermanHighlightNukekebi = false;
@Expose
@ConfigOption(name = "Phase Display", desc = "Show the current phase of the enderman slayer.")