From cc6eb8ebbc19f4fd50c726d01482d9e9ebd4aed8 Mon Sep 17 00:00:00 2001 From: Zutatensuppe Date: Tue, 27 Apr 2021 22:59:01 +0200 Subject: [PATCH] remove console.log output and obsolete comments --- game/game.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/game/game.js b/game/game.js index 6eb16a4..4ff6811 100644 --- a/game/game.js +++ b/game/game.js @@ -613,7 +613,6 @@ async function main() { PIECE_VIEW_LOOSE = !PIECE_VIEW_LOOSE RERENDER = true } - console.log(PIECE_VIEW_FIXED, PIECE_VIEW_LOOSE) }) const evts = new EventAdapter(canvas, window, viewport) @@ -880,12 +879,10 @@ async function main() { for (let tile of tiles) { if (tile.owner === -1) { - // piece is fixed... if (!PIECE_VIEW_FIXED) { continue; } } else { - // not finished if (!PIECE_VIEW_LOOSE) { continue; }