fix: 将 ss+n 命令修改为 ss+,以保持命令一致性并提高用户体验

This commit is contained in:
lixiangwuxian 2025-03-31 02:30:44 +08:00
parent 6454b55a90
commit 8cfa931e40

View File

@ -27,7 +27,7 @@ func init() {
handler.RegisterHelpInform("最新ss", "scoresaber", "查看您的最新游戏记录")
handler.RegisterHandler("截ss", screenshotSS, constants.LEVEL_USER)
handler.RegisterHelpInform("ss+n", "scoresaber", "区排名升高n位还需要打出多少pp")
handler.RegisterHandler("ss+n", ssPlusN, constants.LEVEL_USER)
handler.RegisterHandler("ss+", ssPlusN, constants.LEVEL_USER)
// handler.RegisterHelpInform("截ss", "scoresaber", "scoresaber主页截图")
// handler.RegisterHandler("jss", screenshotSS, constants.LEVEL_USER)
}