diff options
| author | jani270 <69345714+jani270@users.noreply.github.com> | 2023-11-01 10:43:31 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-01 10:43:31 +0100 |
| commit | 9dbc2ba9eb3a14a539523c90efea67cb09b944da (patch) | |
| tree | 50f56f4db8891738a3094b29123c86f75ac351ee /src/main/java/at/hannibal2/skyhanni/config/features | |
| parent | 2efa126057236a912d5b413676f714545e661862 (diff) | |
| download | skyhanni-9dbc2ba9eb3a14a539523c90efea67cb09b944da.tar.gz skyhanni-9dbc2ba9eb3a14a539523c90efea67cb09b944da.tar.bz2 skyhanni-9dbc2ba9eb3a14a539523c90efea67cb09b944da.zip | |
Feature: Makes potion effect messages clickable (#657)
Makes the Compact Potion message open the Potion effects menu on click. #657
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/ChatConfig.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/ChatConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/ChatConfig.java index 309ce04a7..e2e67573f 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/ChatConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/ChatConfig.java @@ -165,6 +165,12 @@ public class ChatConfig { public boolean compactPotionMessage = true; @Expose + @ConfigOption(name = "Clickable Potion Messages", desc = "Makes the Compact Potion message open the Potion effects menu on click.") + @ConfigEditorBoolean + @FeatureToggle + public boolean compactPotionClickableMessage = true; + + @Expose @ConfigOption(name = "Compact Bestiary Message", desc = "Shorten the Bestiary level up message, showing additional information when hovering.") @ConfigEditorBoolean @FeatureToggle |
