This commit is contained in:
adrianvic 2026-04-19 15:24:03 +00:00
commit ad7e9f0b72
8 changed files with 42 additions and 8 deletions

View file

@ -5,7 +5,7 @@ document.addEventListener('keydown', function(event) {
if (event.code === konamiCode[keyIndex]) {
keyIndex++;
if (keyIndex === konamiCode.length) {
window.location.href = './toyourdreams.txt'
window.location.href = './static/toyourdreams.txt'
keyIndex = 0;
}
} else {