Skip to content

Commit

Permalink
Merge formatting
Browse files Browse the repository at this point in the history
Merge formatting into main
  • Loading branch information
github-actions[bot] authored Nov 6, 2023
2 parents f70a7b3 + d0a2488 commit 3c921d9
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions src/events/shardReady.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,22 @@ const event: Event = {
"Shard is now ready #" + id,
)}`,
);
const random = ["Would You Rather", "Truth or Dare", "What Would You Do", "Higher or Lower", "Never Have I Ever" ];
const random = [
"Would You Rather",
"Truth or Dare",
"What Would You Do",
"Higher or Lower",
"Never Have I Ever",
];
const randomStatus = random[Math.floor(Math.random() * random.length)];

const setStatus = () => {
if (!client.user) return;

client.user.setPresence({
activities: [
{
name: `${
randomStatus || "Would You?"
}`,
name: `${randomStatus || "Would You?"}`,
},
],
status: "dnd",
Expand Down

0 comments on commit 3c921d9

Please sign in to comment.