mirror of
https://github.com/mamoe/mirai.git
synced 2025-03-06 17:10:48 +08:00
Fix duplicated function name
This commit is contained in:
parent
d365ec5b4e
commit
631ca4f639
@ -52,13 +52,13 @@ class GroupMessage(
|
|||||||
suspend inline fun quoteReply(plain: String) = reply(this.message.quote() + plain)
|
suspend inline fun quoteReply(plain: String) = reply(this.message.quote() + plain)
|
||||||
|
|
||||||
|
|
||||||
@JvmName("reply1")
|
@JvmName("reply2")
|
||||||
suspend inline fun String.quoteReply() = quoteReply(this)
|
suspend inline fun String.quoteReply() = quoteReply(this)
|
||||||
|
|
||||||
@JvmName("reply1")
|
@JvmName("reply2")
|
||||||
suspend inline fun Message.quoteReply() = quoteReply(this)
|
suspend inline fun Message.quoteReply() = quoteReply(this)
|
||||||
|
|
||||||
@JvmName("reply1")
|
@JvmName("reply2")
|
||||||
suspend inline fun MessageChain.quoteReply() = quoteReply(this)
|
suspend inline fun MessageChain.quoteReply() = quoteReply(this)
|
||||||
|
|
||||||
override fun toString(): String =
|
override fun toString(): String =
|
||||||
|
Loading…
Reference in New Issue
Block a user