From 1252a91f55567f5249b5ff5da3ee636bd7a4a782 Mon Sep 17 00:00:00 2001 From: Ari Trachtenberg Date: Sat, 5 Oct 2024 21:53:48 -0400 Subject: [PATCH] fixed bug in getWhoToPlay --- ttt_interface/ttt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ttt_interface/ttt.cpp b/ttt_interface/ttt.cpp index abd650e..0a401ae 100644 --- a/ttt_interface/ttt.cpp +++ b/ttt_interface/ttt.cpp @@ -168,7 +168,7 @@ GAME_CODE newGame(PLAYER_CODE xPlayerCode, PLAYER_CODE yPlayerCode) { } SQUARE getWhoToPlay(GAME_CODE theGameCode) { - return requestTTT("gameSide.pl")[0]; + return requestTTT("getGameSide.pl?gameCode="+theGameCode)[0]; } string getModTime(GAME_CODE theGameCode) { -- GitLab