From 13aaaba8f32379bc420f551913591344fbad46ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BA=90=E6=96=87=E9=9B=A8?= <41315874+fumiama@users.noreply.github.com> Date: Fri, 26 Sep 2025 23:52:16 +0800 Subject: [PATCH] fix(aichat): rate print error --- plugin/aichat/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/aichat/main.go b/plugin/aichat/main.go index 49cc8a79..18901e8f 100644 --- a/plugin/aichat/main.go +++ b/plugin/aichat/main.go @@ -270,7 +270,7 @@ func init() { ctx.SendChain( message.Text( "【当前AI聊天本群配置】\n", - "• 触发概率:", stor.rate(), "\n", + "• 触发概率:", int(stor.rate()), "\n", "• 温度:", stor.temp(), "\n", "• 以AI语音输出:", ModelBool(!stor.norecord()), "\n", "• 使用Agent:", ModelBool(!stor.noagent()), "\n",