From 64cf76cbe91eb0c139a94f968f9a48f84d1a99b2 Mon Sep 17 00:00:00 2001 From: omgimanerd Date: Sun, 3 Apr 2016 12:46:57 -0400 Subject: [PATCH] palyers lose points hen they die --- lib/Player.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Player.js b/lib/Player.js index 50c4c84..105570b 100644 --- a/lib/Player.js +++ b/lib/Player.js @@ -209,7 +209,7 @@ Player.prototype.respawn = function() { this.vx = 0; this.vy = 0; this.health = Constants.PLAYER_MAX_HEALTH; - this.score -= 1000; + this.score -= 10000; }; /**