{
game.clocks = [tc.mainTime, tc.mainTime];
game.initime[0] = Date.now();
- if (myIdx >= 0) //I play in this game
+ if (myIdx >= 0 && gtype == "live")
{
+ // I play in this live game; corr games don't have clocks+initime
GameStorage.update(game.id,
{
clocks: game.clocks,
this.game = Object.assign({},
game,
- // NOTE: assign mycolor here, since BaseGame could also bs VS computer
+ // NOTE: assign mycolor here, since BaseGame could also be VS computer
{
type: gtype,
increment: tc.increment,
"INSERT INTO Games (vid, fenStart, score, timeControl) " +
"VALUES (" + vid + ",'" + fen + "','*','" + timeControl + "')";
db.run(query, function(err) {
- if (!!err)
- return cb(err);
+ if (!!err)
+ return cb(err);
players.forEach((p,idx) => {
const color = (idx==0 ? "w" : "b");
query =