diff --git a/public/naxion.png b/public/naxion.png
new file mode 100644
index 00000000..c5c497fc
Binary files /dev/null and b/public/naxion.png differ
diff --git a/src/data/custom-map-html.js b/src/data/custom-map-html.js
index d667e1db..178e7540 100644
--- a/src/data/custom-map-html.js
+++ b/src/data/custom-map-html.js
@@ -13,6 +13,7 @@ export async function customMapHtmlCreator({ App, req, solved }) {
const mapMeta = await App.mapMeta.get(req.user.id)
const logbookVisible = showAll || mapMeta.storiesAvailable.length > 0 // any story available
+ const shadowsVisible = showAll || mapMeta.storiesAvailable.includes(3) // story 1 available
const enoughVisible = showAll || mapMeta.storiesAvailable.includes(4) // story 4 available
const musicVisible = showAll || mapMeta.storiesAvailable.includes(5) // story 5 available
@@ -184,14 +185,21 @@ export async function customMapHtmlCreator({ App, req, solved }) {
}
if (enoughVisible) {
- output += `
+ output += `
Enough
`
}
+ if (shadowsVisible) {
+ output += `
+ Schatten von
Naxion
+
+ `
+ }
+
if (musicVisible) {
- output += `
+ output += `
Musik
`