fix: beacon accessibility and bug fixes (#63, #64) #77

Merged
Timmy merged 4 commits from burn/20260412-1150-a11y-fix into main 2026-04-12 16:24:09 +00:00

4 Commits

Author SHA1 Message Date
Alexander Whitestone
eb5d1ae9d9 fix: deduplicate click power formula via getClickPower()
Some checks failed
Accessibility Checks / a11y-audit (pull_request) Failing after 2s
Smoke Test / smoke (pull_request) Failing after 4s
Inline formula at Swarm Protocol calc replaced with canonical
getClickPower() call, satisfying guardrail rule 2 (single source
of truth for click power formula).
2026-04-12 11:55:37 -04:00
Alexander Whitestone
eb2579f1fa fix: URL revoke race in exportSave
URL.revokeObjectURL() was called synchronously after a.click(), but
some browsers need the blob URL alive during download initiation.
Now delayed 1s via setTimeout to let the download start safely.
Fixes #63
2026-04-12 11:54:32 -04:00
Alexander Whitestone
e85eddb00a fix: bulkCost variable scoping in renderBuildings
bulkCost was declared with const inside if/else blocks but referenced
in the outer scope at line 2150 for ETA calculation. Hoisted the
declaration to the function scope so it's accessible throughout.
Fixes smoke test ReferenceError crash.
2026-04-12 11:54:18 -04:00
Alexander Whitestone
e6dbe7e077 fix: debuff corruption bug in game.js — codeBoost -> codeRate
Community Drama debuff applyFn was mutating G.codeBoost *= 0.7 on every
updateRates() call, permanently degrading the boost. Now correctly
applies G.codeRate *= 0.7 to the rate output, not the persistent boost.
Fixes #64
2026-04-12 11:53:47 -04:00