From 79c46ce6818dc857e293a2c382bf4a07dc911c70 Mon Sep 17 00:00:00 2001 From: s2 Date: Sat, 13 Apr 2013 19:32:33 +0200 Subject: [PATCH] better results --- app/js/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/js/index.js b/app/js/index.js index 905ecbb..861c36a 100644 --- a/app/js/index.js +++ b/app/js/index.js @@ -57,13 +57,13 @@ if (typeof(sw) == 'undefined') { var gameOver = function() { var result = 'AWESOME!'; - if (sw.wrongWords > 0 || sw.finaltime > 70) { + if (sw.finaltime > 33) { result = 'You can do better!'; }; - if (sw.wrongWords > 0 || sw.finaltime > 90) { + if (sw.finaltime > 36) { result = 'meh...'; }; - if (sw.wrongWords > 0 && sw.finaltime <= 80) { + if (sw.wrongWords > 0 && sw.finaltime <= 32) { result = 'You are fast, but you made errors'; };