Add Manager Skip button on quiz

This commit is contained in:
Ralex91
2024-02-08 19:37:15 +01:00
parent 8a9b8df7d2
commit 324316bc38
4 changed files with 25 additions and 1 deletions

View File

@@ -40,6 +40,8 @@ io.on("connection", (socket) => {
Player.selectedAnswer(gameState, io, socket, answerKey),
)
socket.on("manager:abortQuiz", () => Manager.abortQuiz(gameState, io, socket))
socket.on("manager:nextQuestion", () =>
Manager.nextQuestion(gameState, io, socket),
)