aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-07-31 11:31:17 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-07-31 11:31:17 +0200
commitdcae53b6880f3520ab5d05aa69b10355cb08fc97 (patch)
tree9f328f6e83d4d4bf8088b31ba57661a850ae334f
parenta2f20b5399a0ff2862ef882183d733223570e7c7 (diff)
downloadskyhanni-dcae53b6880f3520ab5d05aa69b10355cb08fc97.tar.gz
skyhanni-dcae53b6880f3520ab5d05aa69b10355cb08fc97.tar.bz2
skyhanni-dcae53b6880f3520ab5d05aa69b10355cb08fc97.zip
disabled vampire slayer tower features per default
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/SlayerConfig.java14
1 files changed, 11 insertions, 3 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/SlayerConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/SlayerConfig.java
index 9bc300e98..d5d2b6884 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/SlayerConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/SlayerConfig.java
@@ -2,7 +2,15 @@ package at.hannibal2.skyhanni.config.features;
import at.hannibal2.skyhanni.config.core.config.Position;
import com.google.gson.annotations.Expose;
-import io.github.moulberry.moulconfig.annotations.*;
+import io.github.moulberry.moulconfig.annotations.Accordion;
+import io.github.moulberry.moulconfig.annotations.ConfigAccordionId;
+import io.github.moulberry.moulconfig.annotations.ConfigEditorAccordion;
+import io.github.moulberry.moulconfig.annotations.ConfigEditorBoolean;
+import io.github.moulberry.moulconfig.annotations.ConfigEditorColour;
+import io.github.moulberry.moulconfig.annotations.ConfigEditorDropdown;
+import io.github.moulberry.moulconfig.annotations.ConfigEditorSlider;
+import io.github.moulberry.moulconfig.annotations.ConfigEditorText;
+import io.github.moulberry.moulconfig.annotations.ConfigOption;
public class SlayerConfig {
@@ -262,7 +270,7 @@ public class SlayerConfig {
@Expose
@ConfigOption(name = "Highlight blood Ichor", desc = "Highlight the blood Ichor.")
@ConfigEditorBoolean
- public boolean highlight = true;
+ public boolean highlight = false;
@Expose
@ConfigOption(name = "Beacon Beam", desc = "Render a beacon beam where the Blood Ichor is.")
@@ -295,7 +303,7 @@ public class SlayerConfig {
@Expose
@ConfigOption(name = "Highlight Killer Spring", desc = "Highlight the Killer Spring tower.")
@ConfigEditorBoolean
- public boolean highlight = true;
+ public boolean highlight = false;
@Expose
@ConfigOption(name = "Color", desc = "Highlight color.")