From 9f027b7b45c8ba4ccd074e14e1a77b5719c4fe0d Mon Sep 17 00:00:00 2001 From: Ignacio Garro Date: Sat, 6 Apr 2024 10:42:54 +0200 Subject: [PATCH] I am immortal --- game.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/game.js b/game.js index 4f0a717..06694be 100644 --- a/game.js +++ b/game.js @@ -436,6 +436,7 @@ Ship = function () { }; this.collision = function (other) { + /* SFX.explosion(); Game.explosionAt(other.x, other.y); Game.FSM.state = 'player_died'; @@ -443,6 +444,7 @@ Ship = function () { this.currentNode.leave(this); this.currentNode = null; Game.lives--; + */ }; };