Typo in feedback

This commit is contained in:
2025-09-18 16:17:32 +02:00
committed by Bas Antonius de Jong
parent 16a48568e2
commit 76360f70e4

View File

@@ -112,13 +112,13 @@ public class TicTacToe extends GameBase implements Runnable {
case State.WIN:{
// Win
running = false;
addSendToQueue("VR GAME WIN {PLAYERONESCORE: \"<score speler1>\", PLAYERTWOSCORE: \"" +
addSendToQueue("SVR GAME WIN {PLAYERONESCORE: \"<score speler1>\", PLAYERTWOSCORE: \"" +
"<score speler2>\", COMMENT: \"<commentaar op resultaat>\"}\n");
}
case State.DRAW:{
// Draw
running = false;
addSendToQueue("VR GAME DRAW {PLAYERONESCORE: \"<score speler1>\", PLAYERTWOSCORE: \"" +
addSendToQueue("SVR GAME DRAW {PLAYERONESCORE: \"<score speler1>\", PLAYERTWOSCORE: \"" +
"<score speler2>\", COMMENT: \"<commentaar op resultaat>\"}\n");
}
case State.NORMAL:{