diff --git a/mirai-core/src/jvmMain/kotlin/net/mamoe/mirai/BotHelper.kt b/mirai-core/src/jvmMain/kotlin/net/mamoe/mirai/BotHelper.kt index 200dbd05e..82d646eba 100644 --- a/mirai-core/src/jvmMain/kotlin/net/mamoe/mirai/BotHelper.kt +++ b/mirai-core/src/jvmMain/kotlin/net/mamoe/mirai/BotHelper.kt @@ -30,5 +30,4 @@ suspend fun Bot.sendPacket(packet: ClientPacket) = this.network.socket.sendPacke suspend fun Bot.login(): LoginState = this.network.login() //BotAccount - -fun Bot.getBotQQ(): Long = this.account.qqNumber \ No newline at end of file +val Bot.qqNumber: Long get() = this.account.qqNumber \ No newline at end of file