From db9ec1fcadb031297df815706d4a281c799ca99a Mon Sep 17 00:00:00 2001 From: Wyvest <45589059+Wyvest@users.noreply.github.com> Date: Wed, 12 Jan 2022 19:41:10 +0700 Subject: 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) --- .../cc/woverflow/chatting/config/ChattingConfig.kt | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'src/main/kotlin/cc/woverflow/chatting/config/ChattingConfig.kt') 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 @@ -34,6 +34,14 @@ object ChattingConfig : Vigilant(File(Chatting.modDir, "${Chatting.ID}.toml"), C ) var removeTooltipBackground = false + @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", @@ -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 -> -- cgit