From 89eb5094e01253725f7d138368299657be836e17 Mon Sep 17 00:00:00 2001 From: Lorenz Date: Sun, 7 Aug 2022 02:06:30 +0200 Subject: add option to disable the background color from ability cooldown display --- src/main/java/at/hannibal2/skyhanni/config/features/Abilities.java | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config/features') 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 c5776087c..73fb588ef 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Abilities.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Abilities.java @@ -13,6 +13,11 @@ public class Abilities { @ConfigEditorBoolean public boolean itemAbilityCooldown = false; + @Expose + @ConfigOption(name = "Ability Cooldown Background", desc = "Show the cooldown color of item abilities in the background.") + @ConfigEditorBoolean + public boolean itemAbilityCooldownBackground = false; + @Expose @ConfigOption(name = "Ashfang Freeze", desc = "Show the cooldown how long Ashfang blocks all your abilities.") @ConfigEditorBoolean -- cgit