diff options
author | alexichi <alexbankai96@gmail.com> | 2016-05-11 10:12:17 +0200 |
---|---|---|
committer | alexichi <alexbankai96@gmail.com> | 2016-05-11 10:12:17 +0200 |
commit | 7f455adbac3c5f3c67c891249576e9045870edb6 (patch) | |
tree | 715674ec3434786b9a31a22f4443659caafa34b8 /js/dungeon.js | |
parent | 162b1de442bae3f02f14771eeb5f4f32868a97b3 (diff) | |
download | candybox-7f455adbac3c5f3c67c891249576e9045870edb6.tar.gz candybox-7f455adbac3c5f3c67c891249576e9045870edb6.tar.bz2 candybox-7f455adbac3c5f3c67c891249576e9045870edb6.tar.xz candybox-7f455adbac3c5f3c67c891249576e9045870edb6.zip |
correct bonusPower name
Diffstat (limited to 'js/dungeon.js')
-rw-r--r-- | js/dungeon.js | 6 |
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>"; |