diff options
author | Wyvest <45589059+Wyvest@users.noreply.github.com> | 2022-01-12 19:41:10 +0700 |
---|---|---|
committer | Wyvest <45589059+Wyvest@users.noreply.github.com> | 2022-01-12 19:41:10 +0700 |
commit | db9ec1fcadb031297df815706d4a281c799ca99a (patch) | |
tree | 4c5844a9c4cb25f0fd95185ccf80b65127c19376 /src/main/kotlin/cc/woverflow/chatting/config | |
parent | e1b69a16c299b334725f036bb33faf4b30dafd81 (diff) | |
download | Chatting-db9ec1fcadb031297df815706d4a281c799ca99a.tar.gz Chatting-db9ec1fcadb031297df815706d4a281c799ca99a.tar.bz2 Chatting-db9ec1fcadb031297df815706d4a281c799ca99a.zip |
show notification when skytils chat tabs or hychat is detected
add a gui that shows up if chatting may have potentially updated instead of skytils (skyclient)
Diffstat (limited to 'src/main/kotlin/cc/woverflow/chatting/config')
-rw-r--r-- | src/main/kotlin/cc/woverflow/chatting/config/ChattingConfig.kt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/main/kotlin/cc/woverflow/chatting/config/ChattingConfig.kt b/src/main/kotlin/cc/woverflow/chatting/config/ChattingConfig.kt index 846297b..4065966 100644 --- a/src/main/kotlin/cc/woverflow/chatting/config/ChattingConfig.kt +++ b/src/main/kotlin/cc/woverflow/chatting/config/ChattingConfig.kt @@ -36,6 +36,14 @@ object ChattingConfig : Vigilant(File(Chatting.modDir, "${Chatting.ID}.toml"), C @Property( type = PropertyType.SWITCH, + name = "Inform for Alternatives", + description = "Inform the user if a mod they are using can be replaced by a feature in Chatting.", + category = "General" + ) + var informForAlternatives = true + + @Property( + type = PropertyType.SWITCH, name = "Custom Chat Height", description = "Allows you to change the height of chat to heights greater than before.", category = "Chat Window" @@ -164,6 +172,14 @@ object ChattingConfig : Vigilant(File(Chatting.modDir, "${Chatting.ID}.toml"), C ) } + @Property( + type = PropertyType.SWITCH, + name = "First Launch", + category = "General", + hidden = true + ) + var firstLaunch = true + init { initialize() registerListener("chatTabs") { funny: Boolean -> |