forked from FoundKeyGang/FoundKey
より良い重み付け
This commit is contained in:
parent
d03d873e39
commit
bc3e50420d
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ function onGameStarted(g) {
|
|||
if (get(x - 1, y ) == 'null') count++;
|
||||
if (get(x - 1, y - 1) == 'null') count++;
|
||||
//return Math.pow(count, 3);
|
||||
return count >= 5 ? 1 : 0;
|
||||
return count >= 4 ? 1 : 0;
|
||||
});
|
||||
|
||||
botColor = game.user1_id == id && game.black == 1 || game.user2_id == id && game.black == 2;
|
||||
|
|
Loading…
Reference in a new issue