Skip to content

Commit

Permalink
修改特殊问题判断逻辑
Browse files Browse the repository at this point in the history
  • Loading branch information
xlh001 committed Sep 2, 2023
1 parent 64b6ec4 commit 8ccc631
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/respond.go
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ func (c *Core) RespondDaily(user *model.User, model string) {
case "special":
{
// 检测是否已经完成
if score.Content["special"].CurrentScore >= score.Content["special"].MaxScore {
if score.TodayScore >= 34 {
log.Infoln("检测到特殊答题已经完成,即将退出答题")

return
Expand Down

0 comments on commit 8ccc631

Please sign in to comment.