From 7c7144aeaa06a86f610a0044a0efdd320f91b2a9 Mon Sep 17 00:00:00 2001 From: gnieark Date: Tue, 7 Jun 2016 23:13:32 +0200 Subject: [PATCH] . --- html/testBotScripts/connectfour.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/html/testBotScripts/connectfour.html b/html/testBotScripts/connectfour.html index 75c800e..983b93b 100644 --- a/html/testBotScripts/connectfour.html +++ b/html/testBotScripts/connectfour.html @@ -178,7 +178,8 @@ function playingAT(col){ } var line=""; - for (var lx = kx , var ly = ky ; (lx < 7) && (ly < 6) ; lx++ , ly++){ + var lx , ly; + for (lx = kx , ly = ky ; (lx < 7) && (ly < 6) ; lx++ , ly++){ if( grid[ly][lx] == ""){ line += " "; }else{