diff --git a/html/analyze.html b/html/analyze.html
index a5d7cfaa..5eeea44d 100644
--- a/html/analyze.html
+++ b/html/analyze.html
@@ -149,6 +149,7 @@
Level Data
let colorList = Object.keys(res.colors)
let portals = res.portals.split(", ").map(x => x.split(" "))
+let coins = res.coins.split(", ").map(x => x.split(" "))
function commafy(num) { return (+num || 0).toString().replace(/(\d)(?=(\d\d\d)+$)/g, "$1,") }
@@ -196,6 +197,14 @@ Level Data
})
}
+ coins.forEach(x => {
+ if (!x || x[0] == "") {
+ $('#coinText').remove()
+ $('#coins').remove()
+ }
+ else $('#coins').append(`
${x[1]}
`)
+ })
+
triggerList.forEach(x => {
if (x == "total") $('#triggerText').text(`Triggers (${commafy(res.triggers[x])})`)
else $('#triggers').append(`
x${commafy(res.triggers[x])}
`)
diff --git a/html/home.html b/html/home.html
index 99ed630f..8b90754c 100644
--- a/html/home.html
+++ b/html/home.html
@@ -134,6 +134,12 @@ No active daily level! {
@@ -149,7 +155,7 @@