From 9896866cafdc2efc83d158e5c95493d935e689cf Mon Sep 17 00:00:00 2001 From: Vixid <52578495+VixidDev@users.noreply.github.com> Date: Sat, 13 Jan 2024 20:06:08 +0000 Subject: Add option to ignore chat in Everything Chroma (#690) Added option to ignore Everything Chroma in the chat. #690 --- .../at/hannibal2/skyhanni/config/features/chroma/ChromaConfig.java | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config/features') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/chroma/ChromaConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/chroma/ChromaConfig.java index 7446063ba..45e2d12ac 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/chroma/ChromaConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/chroma/ChromaConfig.java @@ -83,11 +83,17 @@ public class ChromaConfig { @ConfigEditorBoolean public boolean allChroma = false; + @Expose + @ConfigOption(name = "Ignore Chat", desc = "Prevents Everything Chroma from applying to the chat if you unironically use that feature...") + @ConfigEditorBoolean + public boolean ignoreChat = false; + private void resetChromaSettings() { SkyHanniMod.getFeature().chroma.chromaSize = 30f; SkyHanniMod.getFeature().chroma.chromaSpeed = 6f; SkyHanniMod.getFeature().chroma.chromaSaturation = 0.75f; SkyHanniMod.getFeature().chroma.allChroma = false; + SkyHanniMod.getFeature().chroma.ignoreChat = false; SkyHanniMod.getFeature().chroma.chromaDirection = Direction.FORWARD_RIGHT; } } -- cgit