diff --git a/gui/titleScreen.js b/gui/titleScreen.js index 0ec7ad8..74909e8 100644 --- a/gui/titleScreen.js +++ b/gui/titleScreen.js @@ -66,7 +66,6 @@ function drawTitleScreen() { snd_select.Play(); mus_title.Stop(); mus_sail.Play(); - // Run Load Data guiControl.title.show = false; G.gameStarted = true; } else { diff --git a/prefabs/shipPrefab.js b/prefabs/shipPrefab.js index 44e99ba..3828a46 100644 --- a/prefabs/shipPrefab.js +++ b/prefabs/shipPrefab.js @@ -62,13 +62,11 @@ pr_ship.Do = function () { this.moveStepProgress += this.currentSpeed * this.moveStepAmount; if (this.moveStepProgress >= this.moveStepSize) { this.moveStepProgress -= this.moveStepSize; - console.log("take step"); this.doTakeStep = true; } else { this.doTakeStep = false; } - this.SeamlessScroll(); // console.log(G.player.name + " created at " + G.player.x + ", " + G.player.y); }