···2121// wait for #commit to exist
2222waitForElm("#commit").then((elm) => {
2323 // set the innertext to that of the contents of v.txt
2424- fetch("images/Zombies/CX/v.txt")
2424+ fetch("images/Zombies/CX/v.html")
2525 .then((response) => response.text())
2626 .then((text) => (elm.innerText = text));
2727});