Fix healthbar not showing 0 when killed
[ld40.git] / ld40.js
diff --git a/ld40.js b/ld40.js
index f7954c2a7d4a0ae5239f12a0094744b2cafe8b7b..e981a9ef0768c78a6868a9e8c0ffdbae3f066660 100644 (file)
--- a/ld40.js
+++ b/ld40.js
                 }
             }
 
+            kill() {
+                this.health = 0;
+                this.healthBar.update(this.love, this.maxHealth, this.health);
+                super.kill();
+            }
+
             loveUp() {
                 this.love++
                 this.maxHealth += this.love;