diff options
-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>"; |