From d9fb5d30db4f155b0818e15718d943fa6f40bebf Mon Sep 17 00:00:00 2001 From: neingeist Date: Mon, 25 Nov 2013 10:10:34 +0100 Subject: [PATCH] update text --- platformer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platformer.js b/platformer.js index ea4069a..a47d71a 100644 --- a/platformer.js +++ b/platformer.js @@ -119,7 +119,7 @@ Q.Sprite.extend("Starbug",{ // end the game unless the enemy is hit on top this.on("bump.left,bump.right,bump.bottom",function(collision) { if(collision.obj.isA("Player")) { - Q.stageScene("endGame",1, { label: "You Died" }); + Q.stageScene("endGame",1, { label: "DU BIST TOT" }); collision.obj.destroy(); } });