summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-04-02 19:17:45 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-04-02 19:17:45 +0200
commite2c459b4334504ef708ac6feca7f7be3faf6630f (patch)
treec80fa1dfb2d441629b92585056a839763a5998fa /src/main/java/at/hannibal2/skyhanni/config
parentc644a443188ba929b54a6d79d64540e3f16f0c14 (diff)
downloadskyhanni-e2c459b4334504ef708ac6feca7f7be3faf6630f.tar.gz
skyhanni-e2c459b4334504ef708ac6feca7f7be3faf6630f.tar.bz2
skyhanni-e2c459b4334504ef708ac6feca7f7be3faf6630f.zip
Added an extra toggle to disable the quest warning title (which is sent to you if you haven't activated auto-slayer or are farming combat exp for the wrong slayer)
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java b/src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java
index 0338f713c..eb9bd078a 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java
@@ -95,4 +95,9 @@ public class Slayer {
@ConfigOption(name = "Quest Warning", desc = "Warning when wrong slayer quest is selected, or killing mobs for the wrong slayer.")
@ConfigEditorBoolean
public boolean questWarning = true;
+
+ @Expose
+ @ConfigOption(name = "Quest Warning Title", desc = "Sends a Title when warning.")
+ @ConfigEditorBoolean
+ public boolean questWarningTitle = true;
}