查询成绩添加姓名

This commit is contained in:
johlanse 2022-11-08 21:17:38 +08:00
parent 865f9f9322
commit 9e4be85a01
1 changed files with 1 additions and 1 deletions

View File

@ -160,7 +160,7 @@ func qqGetScore(event *Event, args []string) {
event.Send(err.Error()) event.Send(err.Error())
continue continue
} }
event.Send(lib.FormatScore(score)) event.Send(user.Nick + "\n" + lib.FormatScore(score))
} }
} }