Skip to content

Commit

Permalink
Merge pull request #301 from Entkenntnis/295-punktzahl-could-be-too-d…
Browse files Browse the repository at this point in the history
…eceptive

Punktzahl: mark wrong score display with glitch effect
  • Loading branch information
Entkenntnis authored Nov 14, 2024
2 parents 1719469 + 780d3d1 commit 0a2f254
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/content/challenges-part1.js
Original file line number Diff line number Diff line change
Expand Up @@ -797,12 +797,16 @@ export const part1 = [
de: story(
'Kiwi',
`
<p>Der Server hat irgendwie Probleme damit, die Punktzahl richtig darzustellen. Finde heraus, was deine aktuelle Punktzahl ist. Diese ist deine Antwort.</p>
<p>Der Server hat irgendwie Probleme damit, die Punktzahl richtig darzustellen. Die Anzeige oben rechts scheint fehlerhaft zu sein. Finde heraus, was deine aktuelle Punktzahl ist. Diese ist deine Antwort.</p>
<script src="/powerglitch.min.js"></script>
<script>
const previous = parseInt(document.getElementById('statusbar-user-score').innerHTML)
const newVal = previous + (Math.random() > 0.5 ? 1 : -1)
document.getElementById('statusbar-user-score').innerHTML = newVal
PowerGlitch.glitch('#statusbar-user-score')
</script>
`
),
Expand Down

0 comments on commit 0a2f254

Please sign in to comment.