From f030de575fb61956af948523f3d26c7150c0976a Mon Sep 17 00:00:00 2001 From: gnieark Date: Thu, 16 Jun 2016 13:45:56 +0200 Subject: [PATCH] fix js --- src/arenas/tictactoe/js.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arenas/tictactoe/js.js b/src/arenas/tictactoe/js.js index d5031f5..4480d80 100644 --- a/src/arenas/tictactoe/js.js +++ b/src/arenas/tictactoe/js.js @@ -22,5 +22,5 @@ function tictactoe(bot1,bot2,xd_check,fullLogs){ }}; xhr.open("POST", '/tictactoe', true); xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); - xhr.send('act=fight&bot1=' + bot1 + '&bot2=' + bot2 + '&fulLLog=' + fullLogs + '&xd_check=' + xd_check); + xhr.send('act=fight&bot1=' + bot1 + '&bot2=' + bot2 + '&fulLLogs=' + fullLogs + '&xd_check=' + xd_check); }