From 3ccb5f5354683fedc705511529debd93c915fb62 Mon Sep 17 00:00:00 2001 From: Tobias Springer Date: Sun, 10 May 2020 17:46:06 +0200 Subject: [PATCH] Remove unnecessary debug output --- src/js/game/buildings/belt_base.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/js/game/buildings/belt_base.js b/src/js/game/buildings/belt_base.js index c14e953c..b7459de0 100644 --- a/src/js/game/buildings/belt_base.js +++ b/src/js/game/buildings/belt_base.js @@ -169,7 +169,6 @@ export class MetaBeltBaseBuilding extends MetaBuilding { // do a curve from the left to the top if (hasRightEjector && !hasLeftEjector) { - console.log("e - connect right"); return { rotation: (rotation + 270) % 360, rotationVariant: 2, @@ -179,7 +178,6 @@ export class MetaBeltBaseBuilding extends MetaBuilding { // When something ejects to us from the right and nothing from the left, // do a curve from the right to the top if (hasLeftEjector && !hasRightEjector) { - console.log("e - connect left"); return { rotation: (rotation + 90) % 360, rotationVariant: 1, @@ -193,7 +191,6 @@ export class MetaBeltBaseBuilding extends MetaBuilding { // When there is an acceptor to the right but no acceptor to the left, // do a turn to the right if (hasRightAcceptor && !hasLeftAcceptor) { - console.log("a - connect right"); return { rotation, rotationVariant: 2, @@ -203,7 +200,6 @@ export class MetaBeltBaseBuilding extends MetaBuilding { // When there is an acceptor to the left but no acceptor to the right, // do a turn to the left if (hasLeftAcceptor && !hasRightAcceptor) { - console.log("a - connect left"); return { rotation, rotationVariant: 1,