fix for swapped kings & queens in initial board

This commit is contained in:
Jesse D. McDonald 2020-03-12 14:47:54 -05:00
parent 22449d8405
commit 98ead6724f
1 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ var gun = Gun(['https://jessemcdonald.info/gun']);
let initialBoard = (function (){ let initialBoard = (function (){
var init = JSON.stringify({ var init = JSON.stringify({
'light': [ 'light': [
'rnbkqbnr', 'rnbqkbnr',
'pppppppp', 'pppppppp',
' ', ' ',
' ', ' ',
@ -21,7 +21,7 @@ let initialBoard = (function (){
' ', ' ',
' ', ' ',
'pppppppp', 'pppppppp',
'rnbkqbnr', 'rnbqkbnr',
], ],
'player': 'light', 'player': 'light',
}); });