From 5a866cb270b1d5e1e8a8d0b7c3726a5472f900c2 Mon Sep 17 00:00:00 2001 From: gnieark Date: Thu, 16 Jun 2016 13:46:24 +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 4480d80..3a4f7d9 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 + '&fulLLogs=' + fullLogs + '&xd_check=' + xd_check); + xhr.send('act=fight&bot1=' + bot1 + '&bot2=' + bot2 + '&fullLogs=' + fullLogs + '&xd_check=' + xd_check); }