aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpiernov <piernov@piernov.org>2016-05-10 22:55:16 +0200
committerpiernov <piernov@piernov.org>2016-05-10 22:55:16 +0200
commit4b04ed3abe48a1623b84b5c84fde8ee1b141f3e3 (patch)
tree037a5bc8c8297c8fbe5a8eee0b32866799fff8d8
parent931eb5f31a12f6415ff4cf447528f4df504aa3a3 (diff)
downloadcandybox-4b04ed3abe48a1623b84b5c84fde8ee1b141f3e3.tar.gz
candybox-4b04ed3abe48a1623b84b5c84fde8ee1b141f3e3.tar.bz2
candybox-4b04ed3abe48a1623b84b5c84fde8ee1b141f3e3.tar.xz
candybox-4b04ed3abe48a1623b84b5c84fde8ee1b141f3e3.zip
Fix spelling mistake on dungeon end
-rw-r--r--js/dungeon.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/js/dungeon.js b/js/dungeon.js
index 7d97b49..a84466e 100644
--- a/js/dungeon.js
+++ b/js/dungeon.js
@@ -118,10 +118,10 @@ function exitDungeon(boss){
levelUp(20);//you earn 20 xp
creditAccount(1000);//you earn 1000 gold coins
var tmphtml = "<h3>You have completed the dungeon! CONGRATULATIONS!</h3>";
- tmphmtl += "<ul>";
+ tmphtml += "<ul>";
tmphtml += "<li><h4>You have earned 1000 gold coins</h4></li>"
- tmphmtl += "<li><h4>You have earned 20 xp</h4></li>";
- tmphmtl += "</ul>";
+ tmphtml += "<li><h4>You have earned 20 xp</h4></li>";
+ tmphtml += "</ul>";
document.getElementById("tab4").innerHTML = tmphtml;
}
else document.getElementById("tab4").innerHTML = "<h4>Not available, you have to buy a ticket in the build section.</h4>";