diff options
Diffstat (limited to 'src/main/kotlin/cc/woverflow')
-rw-r--r-- | src/main/kotlin/cc/woverflow/chatting/config/ChattingConfig.kt | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/src/main/kotlin/cc/woverflow/chatting/config/ChattingConfig.kt b/src/main/kotlin/cc/woverflow/chatting/config/ChattingConfig.kt index d0cfd71..599f101 100644 --- a/src/main/kotlin/cc/woverflow/chatting/config/ChattingConfig.kt +++ b/src/main/kotlin/cc/woverflow/chatting/config/ChattingConfig.kt @@ -29,11 +29,6 @@ object ChattingConfig : Config( ) var textRenderType = 1 - @Switch( - name = "Remove Scroll Bar", category = "General" - ) - var removeScrollBar = true - @Color( name = "Chat Background Color", category = "General", allowAlpha = false ) @@ -61,11 +56,23 @@ object ChattingConfig : Config( @Switch( name = "Smooth Chat Messages", - category = "Animations" + category = "Animations", subcategory = "Messages" ) var smoothChat = true @Switch( + name = "Smooth Chat Scrolling", + category = "Animations", subcategory = "Scrolling" + ) + var smoothScrolling = true + + @Switch( + name = "Remove Scroll Bar", + category = "Animations", subcategory = "Scrolling" + ) + var removeScrollBar = true + + @Switch( name = "Show Chat Heads", description = "Show the chat heads of players in chat", category = "Chat Heads" ) var showChatHeads = true |