diff --git a/game.js b/game.js index 4f0a717..97f9cf6 100644 --- a/game.js +++ b/game.js @@ -436,13 +436,13 @@ Ship = function () { }; this.collision = function (other) { - SFX.explosion(); - Game.explosionAt(other.x, other.y); - Game.FSM.state = 'player_died'; - this.visible = false; - this.currentNode.leave(this); - this.currentNode = null; - Game.lives--; + //SFX.explosion(); + //Game.explosionAt(other.x, other.y); + //Game.FSM.state = 'player_died'; + //this.visible = false; + //this.currentNode.leave(this); + //this.currentNode = null; + //Game.lives--; }; };