Skip to content

Commit

Permalink
🚀4.5.4
Browse files Browse the repository at this point in the history
- Fixed bugs
- Added more rng text
  • Loading branch information
Thedogecraft committed Aug 12, 2024
1 parent c1ba12f commit f191dba
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 9 deletions.
6 changes: 0 additions & 6 deletions public/games.json
Original file line number Diff line number Diff line change
Expand Up @@ -443,12 +443,6 @@
"url": "dante",
"new": false
},
{
"name": "Dr Doe's Chemistry Quiz",
"image": "image.png",
"url": "drdoe/content/www.newgrounds.com/portal/view/724772",
"new": true
},
{
"name": "Deal or No Deal",
"image": "index.jpg",
Expand Down
16 changes: 14 additions & 2 deletions public/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ const texts = [
"Unblocked!",
"Welcome To Lunaar!",
"Did you know we are open source? Fork US!",
"Join the discord: https://dsc.gg/parcoil",
'Join the discord: <a href="https://dsc.gg/parcoil">https://dsc.gg/parcoil</a>',
"404: Productivity not found.",
"Snappier is bad at american truck simulator",
"Ctrl + Alt + Delete your worries.",
Expand All @@ -170,6 +170,18 @@ const texts = [
"thx sandwich",
"Yup this is Julian.",
"they not like us",
"What's up brother!",
"Do not insert text here",
"They not like us",
"1 + 1 = 11",
"LUNAARR",
"My CPU is 156 degrees :)",
"Spicy Nacho Doritos are good",
"Yo so games are cool",
"Aiden does questionable things...",
"Bonelab = Garys mod",
"Elden Ring on top - wavy ",
'Join our Discord: <a href="https://dsc.gg/parcoil">https://dsc.gg/parcoil</a>',
"better than interstellar",
"thats tuff",
"NodeJS on top!",
Expand All @@ -192,7 +204,7 @@ function displayRandomText() {
if (window.location.pathname === "/") {
const randomIndex = getRandomIndex(texts.length);
const randomText = texts[randomIndex];
document.getElementById("randomText").innerText = randomText;
document.getElementById("randomText").innerHTML = randomText;
}
}

Expand Down
2 changes: 1 addition & 1 deletion public/projects.html
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ <h1>Games</h1>
<input
id="game-search"
type="text"
placeholder="Search through ${gamesData.length} games"
placeholder="Search through 293 games"
oninput="searchGames(this.value)"
/>
</div>
Expand Down

0 comments on commit f191dba

Please sign in to comment.