summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorLorenz <lo.scherf@gmail.com>2022-09-07 13:46:31 +0200
committerLorenz <lo.scherf@gmail.com>2022-09-07 13:46:31 +0200
commita356555e2cf6c9a88e9039340e8a294a3ed5677a (patch)
tree77fbd26409a3f4f2339e1af1d0c9ed79a8f4c295 /src/main/java/at/hannibal2/skyhanni/config
parent0dcd85d1103e5b8072aa97e186e986febbe6a60b (diff)
downloadskyhanni-a356555e2cf6c9a88e9039340e8a294a3ed5677a.tar.gz
skyhanni-a356555e2cf6c9a88e9039340e8a294a3ed5677a.tar.bz2
skyhanni-a356555e2cf6c9a88e9039340e8a294a3ed5677a.zip
fixed bazaar api checking too often
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/Abilities.java21
1 files changed, 18 insertions, 3 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Abilities.java b/src/main/java/at/hannibal2/skyhanni/config/features/Abilities.java
index 4e93679d4..4ba58da70 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/Abilities.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/Abilities.java
@@ -52,7 +52,22 @@ public class Abilities {
public boolean summoningMobColored = false;
@Expose
- @ConfigOption(name = "Fire Veil Particles", desc = "Hiding the flame particles when using the Fire Veil Wand ability.")
- @ConfigEditorBoolean
- public boolean fireVeilWandHider = false;
+ @ConfigOption(name = "Fire Veil", desc = "")
+ @ConfigEditorAccordion(id = 1)
+ public boolean fireVeilWand = false;
+
+ @Expose
+ @ConfigOption(name = "Fire Veil Design", desc = "Changes the flame particles of the Fire Veil Wand ability")
+ @ConfigEditorDropdown(values = {"Particles", "Line", "Off"})
+ @ConfigAccordionId(id = 1)
+ public int fireVeilWandDisplay = 0;
+
+ @Expose
+ @ConfigOption(
+ name = "Line Color",
+ desc = "Changes the color of the Fire Veil Wand line"
+ )
+ @ConfigEditorColour
+ @ConfigAccordionId(id = 1)
+ public String fireVeilWandDisplayColor = "0:245:255:85:85";
}