Skip to content

Commit

Permalink
Delete relived & use githack for 3kh0
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-92 committed Dec 15, 2024
1 parent 852c805 commit 8fc38ee
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,6 @@ <h1>Not-Games</h1>

const repoUrls = [
'https://api.github.com/repos/sebastian-92/game-assets/contents',
'https://api.github.com/repos/WhoIsEv/relivedassets/contents',
'https://api.github.com/repos/sebastian-92/selenite1/contents/semag'
];

Expand All @@ -313,7 +312,7 @@ <h1>Not-Games</h1>
console.error('Error fetching data:', error);
return [];
});
})).then(([gameAssetsData, relivedAssetsData, seleniteAssetsData]) => {
})).then(([gameAssetsData, seleniteAssetsData]) => {
const newLinks = [];

function addNewLinks(repoData, baseUrl, nameExt) {
Expand All @@ -328,7 +327,6 @@ <h1>Not-Games</h1>
});
} // Add game assets from GitHub repos
addNewLinks(gameAssetsData, 'https://raw.githack.com/sebastian-92/game-assets/fixy', '~pegleg/3kh0');
addNewLinks(relivedAssetsData, 'https://raw.githack.com/WhoIsEv/relivedassets/main', '~relivedassets');
addNewLinks(seleniteAssetsData, 'https://rawcdn.githack.com/sebastian-92/selenite1/f648efb8d13961a0042118584248e38d77d2f603', '~selenite');
// Add crazyitems links
const crazyitems = [ "ragdoll-archers",
Expand Down Expand Up @@ -10767,7 +10765,7 @@ <h1>Not-Games</h1>
.then((data) => {
data.forEach((project) => {
const anchor = document.createElement('a');
anchor.href = 'https://lite.3kh0.net/' + project.link;
anchor.href = 'https://rawcdn.githack.com/3kh0/3kh0-lite/d5cf6bb79a6427ada99e7f2e31425325f454565d/' + project.link;
anchor.textContent = project.title + `~3kh0lite`;
anchor.style.display = 'block';
newLinks.push(anchor);
Expand Down

0 comments on commit 8fc38ee

Please sign in to comment.