Skip to content

Commit

Permalink
fix(plugins/qqstatplugin/): #群排行榜:标题单独一行
Browse files Browse the repository at this point in the history
  • Loading branch information
yiyungent committed Jan 24, 2023
1 parent fde90ae commit eab0741
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions plugins/QQStatPlugin/QQStatPlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ public void OnGroupMessage((Bot s, GroupMessageEvent e) obj, string message, str
var topByGroupList = DbContext.TopByGroup(groupUin: groupUin.ToString()).Result.ToList();
List<BaseChain> baseChains = new List<BaseChain>();
baseChains.Add(TextChain.Create("本群发言排行榜 (总字数)"));
baseChains.Add(TextChain.Create("\r\n"));
for (int i = 0; i < topByGroupList.Count; i++)
{
baseChains.Add(TextChain.Create($"{(i + 1)}: "));
Expand Down
2 changes: 1 addition & 1 deletion plugins/QQStatPlugin/info.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"DisplayName": "QQ消息统计分析",
"Description": "QQ消息等数据收集, 分析",
"Author": "yiyun",
"Version": "1.1.0",
"Version": "1.1.1",
"SupportedVersions": [ "0.0.1" ]
}

0 comments on commit eab0741

Please sign in to comment.