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 97b7c29 commit c0dd49cCopy full SHA for c0dd49c
gradle.properties
@@ -1,5 +1,5 @@
1
group=me.arasple.mc.trchat
2
-version=2.3.1
+version=2.3.2
3
kotlin.incremental=true
4
kotlin.incremental.java=true
5
kotlin.incremental.useClasspathSnapshot=true
project/module-chat/src/main/kotlin/taboolib/module/chat/ComponentText.kt
@@ -21,6 +21,9 @@ interface ComponentText : Source {
21
/** 追加另一个 [ComponentText] */
22
operator fun plusAssign(other: ComponentText)
23
24
+ /** 添加文本块 */
25
+ fun append(text: String): ComponentText = append(text, color = true)
26
+
27
/** 添加文本块 */
28
fun append(text: String, color: Boolean = true): ComponentText
29
0 commit comments