diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-08-03 21:55:06 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-08-03 21:55:06 +0200 |
commit | 5dee3f298497dae472e80235091b659e4042fd49 (patch) | |
tree | 1f56f4f292d81c0fb8a3605cb50268d2bd8c6662 /src/main/java/at/hannibal2/skyhanni/config/features | |
parent | d28deb42cf69ba3a56e1117e373a0a3514a45e31 (diff) | |
download | skyhanni-5dee3f298497dae472e80235091b659e4042fd49.tar.gz skyhanni-5dee3f298497dae472e80235091b659e4042fd49.tar.bz2 skyhanni-5dee3f298497dae472e80235091b659e4042fd49.zip |
Shorten the bestiary level-up message
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/ChatConfig.java (renamed from src/main/java/at/hannibal2/skyhanni/config/features/Chat.java) | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Chat.java b/src/main/java/at/hannibal2/skyhanni/config/features/ChatConfig.java index f149fc624..1723db1be 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Chat.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/ChatConfig.java @@ -1,10 +1,14 @@ package at.hannibal2.skyhanni.config.features; import com.google.gson.annotations.Expose; -import io.github.moulberry.moulconfig.annotations.*; +import io.github.moulberry.moulconfig.annotations.ConfigAccordionId; +import io.github.moulberry.moulconfig.annotations.ConfigEditorAccordion; +import io.github.moulberry.moulconfig.annotations.ConfigEditorBoolean; +import io.github.moulberry.moulconfig.annotations.ConfigEditorKeybind; +import io.github.moulberry.moulconfig.annotations.ConfigOption; import org.lwjgl.input.Keyboard; -public class Chat { +public class ChatConfig { @Expose @ConfigOption(name = "Peek Chat", desc = "Hold this key to keep the chat open.") @@ -130,6 +134,11 @@ public class Chat { public boolean compactPotionMessage = true; @Expose + @ConfigOption(name = "Compact Bestiary Message", desc = "Shorten the bestiary level up message, showing additional information when hovering.") + @ConfigEditorBoolean + public boolean compactBestiaryMessage = true; + + @Expose @ConfigOption(name = "Arachne Hider", desc = "Hide chat messages about the Arachne Fight while outside of §eArachne's Sanctuary§7.") @ConfigEditorBoolean public boolean hideArachneMessages = false; |