diff options
author | Thomas Voss <thomasvoss@live.com> | 2022-01-14 20:36:30 +0100 |
---|---|---|
committer | Thomas Voss <thomasvoss@live.com> | 2022-01-14 20:36:30 +0100 |
commit | ee18ab397ded07830141d0f11ccde2ed67449b62 (patch) | |
tree | d2ae4adb9325cb3c9323a92c484e840a3d6454b2 | |
parent | d9b00c8bd1c522529455b1174967fc00e5531d1c (diff) |
Remove games from the environment when they end
-rw-r--r-- | draughts/app.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/draughts/app.js b/draughts/app.js index b5a9fa5..5a4bab7 100644 --- a/draughts/app.js +++ b/draughts/app.js @@ -80,7 +80,9 @@ wss.on("connection", ws => { } }, ws) game.move(msg.body) - game.nextTurn() + + if (!game.nextTurn()) + env.removeGame(game) break } }) |