We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ebd695 commit d1aa777Copy full SHA for d1aa777
1 file changed
src/main/kotlin/com/mairwunnx/projectessentials/chat/models/ChatModel.kt
@@ -6,7 +6,8 @@ import kotlinx.serialization.Serializable
6
data class ChatModel(
7
var moderation: Moderation = Moderation(),
8
var messaging: Messaging = Messaging(),
9
- var mentions: Mentions = Mentions()
+ var mentions: Mentions = Mentions(),
10
+ var events: Events = Events()
11
) {
12
@Serializable
13
data class Moderation(
@@ -39,4 +40,11 @@ data class ChatModel(
39
40
var mentionAtFormat: String = "&c",
41
var mentionNameFormat: String = "&b"
42
)
43
+
44
+ @Serializable
45
+ data class Events(
46
+ var joinMessageEnabled: Boolean = true,
47
+ var leftMessageEnabled: Boolean = true,
48
+ var advancementsEnabled: Boolean = true
49
+ )
50
}
0 commit comments