From ff8eece888c9165e80c070a189e4c0fd4d6a92ef Mon Sep 17 00:00:00 2001 From: onezplpl Date: Thu, 25 Jul 2024 14:28:47 -0400 Subject: [PATCH] fix attribution again --- index.html | 4 ++-- js/app.js | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 49eee0f..85aff4d 100644 --- a/index.html +++ b/index.html @@ -13,9 +13,9 @@
-

H-Frictions [Git]

+

H-Frictions [Git]

This is the longest 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...

-

Anyone can join, by signing up onto Scratch and remixing the latest project in the list. There are no hard rules, whenever a remix gets accepted or not is up to the community of remixers.

+

Anyone can join, by signing up onto Scratch and remixing the latest project in the list. There are no rules, 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.

Made by...

diff --git a/js/app.js b/js/app.js index 8bc2719..10d73ea 100644 --- a/js/app.js +++ b/js/app.js @@ -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(', ');