diff --git a/src/api/controllers/puzzle.controller.ts b/src/api/controllers/puzzle.controller.ts index f059abd..4d358a0 100644 --- a/src/api/controllers/puzzle.controller.ts +++ b/src/api/controllers/puzzle.controller.ts @@ -98,9 +98,10 @@ class PuzzleController extends BaseController { if (mode == 1) { let score = result ? 3 : -1 await updateScore(history.room, [{accountid, score }]) - if (checkSubFinish(history, id)) { - await sendOneQuestion(history) - } + + // if (checkSubFinish(history, id)) { + // await sendOneQuestion(history) + // } } return { result, answer: record.a1, stats: history.members } }