From 48ca2eae8ba6f3de822a08b9712f980136e14a78 Mon Sep 17 00:00:00 2001 From: s2 Date: Sat, 6 Apr 2013 11:04:09 +0200 Subject: [PATCH] fix 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 43fec6e..7019620 100644 --- a/app/js/index.js +++ b/app/js/index.js @@ -47,12 +47,12 @@ if (typeof(sw) == 'undefined') { sw.gameover = true; var result = 'Sehr gut!'; - if (sw.wrongWords > 1 || sw.finaltime > 60) { - result = 'geht so...'; - }; if (sw.wrongWords > 1 || sw.finaltime > 50) { result = 'Du kannst das besser!'; }; + if (sw.wrongWords > 1 || sw.finaltime > 60) { + result = 'geht so...'; + }; if (sw.wrongWords > 1 && sw.finaltime < 40) { result = 'Du bist sehr schnell, aber du hast Fehler gemacht'; };