From e2c459b4334504ef708ac6feca7f7be3faf6630f Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Sun, 2 Apr 2023 19:17:45 +0200 Subject: 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) --- src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config') 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; } -- cgit