fix attribution again
This commit is contained in:
parent
984b31014a
commit
ff8eece888
2 changed files with 4 additions and 3 deletions
|
@ -13,9 +13,9 @@
|
|||
|
||||
<body>
|
||||
<div class="content">
|
||||
<h1>H-Frictions <a href="https://git.qazox.dev/derv/frictionless">[Git]</a></h1>
|
||||
<h1>H-Frictions <a href="https://git.zenoverse.net/onezplpl/frictionless">[Git]</a></h1>
|
||||
<p>This is the <b>longest</b> remix chain on Scratch with diverse content. Yes, a dedicated community actually spent years remixing the same chain with random memeposts and stories. And it all started from a simple platformer game...</p>
|
||||
<p>Anyone can join, by signing up onto <a href='https://scratch.mit.edu/'>Scratch</a> and remixing the latest project in the list. There are <b>no hard rules</b>, whenever a remix gets accepted or not is up to the community of remixers.</p>
|
||||
<p>Anyone can join, by signing up onto <a href='https://scratch.mit.edu/'>Scratch</a> and remixing the latest project in the list. There are <b>no rules</b>, whenever a remix gets accepted or not is up to the community of remixers. If a remix wasn't remixed, it either was late, or it was vetoed by the community.</p>
|
||||
<h2>Made by...</h2>
|
||||
<div class='contributors'></div>
|
||||
</div>
|
||||
|
|
|
@ -24,7 +24,8 @@ async function genTree(treeId) {
|
|||
let doThings = false;
|
||||
|
||||
async function main() {
|
||||
await genTree("988888888"); // latest project
|
||||
let latestData = await fetch("https://api.scratch.mit.edu/studios/34493018/projects").then(x => x.json());
|
||||
await genTree(latestData[0].id); // latest project
|
||||
await genTree("654605857"); // tree bug here, unavoidable without jank
|
||||
doThings = true;
|
||||
document.querySelector('.contributors').textContent = Object.keys(users).join(', ');
|
||||
|
|
Loading…
Reference in a new issue