https://pvzm.net/ to play [Read-only GitHub mirror] pvzm.net
modded vs pvz plants-vs-zombies plantsvszombies javascript online zombie noads jspvz pvzm game plants plant
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

aaa

Signed-off-by: ClaytonTDM <claytontdm@gmail.com>

+4 -4
+3 -3
.github/workflows/main.yml
··· 1 - name: Create Version File + Prettify Code 1 + name: Deploy 2 2 3 3 on: 4 4 push: ··· 30 30 run: | 31 31 npx prettier --write "**/*.{js,md,html,css,yml}" 32 32 33 - - name: Create v.txt with commit hash 33 + - name: Create v.html with commit hash 34 34 run: | 35 - echo "${{ github.sha }}" > game/images/Zombies/CX/v.txt 35 + echo "${{ github.sha }}" > game/images/Zombies/CX/v.html 36 36 37 37 - name: Get commit message 38 38 id: get_commit_message
game/images/Zombies/CX/v.txt game/images/Zombies/CX/v.html
+1 -1
game/js/Custom.js
··· 21 21 // wait for #commit to exist 22 22 waitForElm("#commit").then((elm) => { 23 23 // set the innertext to that of the contents of v.txt 24 - fetch("images/Zombies/CX/v.txt") 24 + fetch("images/Zombies/CX/v.html") 25 25 .then((response) => response.text()) 26 26 .then((text) => (elm.innerText = text)); 27 27 });