chore: nothing

This commit is contained in:
2024-10-11 19:03:42 +08:00
parent e01a98d254
commit c428b84e10
1 file changed
+2 -2
@@ -35,9 +35,9 @@ class IdiomExplainCommand : BaseCommand() {
val msg = MessageChain.Builder() val msg = MessageChain.Builder()
.addText("成语: ${response.name} 的解释如下") .addText("成语: ${response.name} 的解释如下")
.addNewLine() .addNewLine()
.addText("解释: ${response.explanation}") .addText(response.explanation)
.addNewLine(2) .addNewLine(2)
.addText("出处: ${response.provenance}") .addText(response.provenance)
.addNewLine(2) .addNewLine(2)
.addText(response.sound) .addText(response.sound)
.build() .build()