aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorVixid <52578495+VixidDev@users.noreply.github.com>2024-01-13 20:06:08 +0000
committerGitHub <noreply@github.com>2024-01-13 21:06:08 +0100
commit9896866cafdc2efc83d158e5c95493d935e689cf (patch)
treeafae506f191fdf6542d4b889e963bceb95d13723 /src/main/java/at/hannibal2/skyhanni/config
parent4c3b896787d07b84c895a89f49f5dec4f42f0b31 (diff)
downloadskyhanni-9896866cafdc2efc83d158e5c95493d935e689cf.tar.gz
skyhanni-9896866cafdc2efc83d158e5c95493d935e689cf.tar.bz2
skyhanni-9896866cafdc2efc83d158e5c95493d935e689cf.zip
Add option to ignore chat in Everything Chroma (#690)
Added option to ignore Everything Chroma in the chat. #690
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/chroma/ChromaConfig.java6
1 files changed, 6 insertions, 0 deletions
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;
}
}