diff --git a/simbot-component-kook-core/src/commonMain/kotlin/love/forte/simbot/component/kook/message/KookReceiveMessageContent.kt b/simbot-component-kook-core/src/commonMain/kotlin/love/forte/simbot/component/kook/message/KookReceiveMessageContent.kt index af018dbb..2bc369c1 100644 --- a/simbot-component-kook-core/src/commonMain/kotlin/love/forte/simbot/component/kook/message/KookReceiveMessageContent.kt +++ b/simbot-component-kook-core/src/commonMain/kotlin/love/forte/simbot/component/kook/message/KookReceiveMessageContent.kt @@ -126,6 +126,9 @@ public interface KookMessageContent : MessageContent, DeleteSupport { * 将消息转化为一个消息链(尤其是转化kmarkdown类型的消息)的过程中有可能会丢失一部分原有的格式。 * 因此当你直接通过 [messages] 重复发送消息时有可能会产生与收到的消息不一致的效果。 * + * ## 消息引用 + * 有关消息引用的信息需要通过 [reference] API 查询获取,不会被包含在 [messages] 中。 + * */ override val messages: Messages @@ -135,6 +138,8 @@ public interface KookMessageContent : MessageContent, DeleteSupport { * 或 [GetDirectMessageViewApi] 发起请求并得到结果, * 因此 [reference] 会产生挂起。 * + * [reference] 的结果不会包含在 [messages] 中。 + * * 如果是私聊会话,会先查询会话code,然后查询消息引用。 * * 查询结果不会被缓存,每次调用都会产生API请求。