From 564a419b40f9ac988b655e5dd81febb8331e0681 Mon Sep 17 00:00:00 2001 From: WatDuhHekBro Date: Thu, 15 Apr 2021 18:14:21 -0500 Subject: [PATCH] Shamelessly added myself to the whois registry --- src/commands/fun/whois.ts | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/commands/fun/whois.ts b/src/commands/fun/whois.ts index 86d7360..761e049 100644 --- a/src/commands/fun/whois.ts +++ b/src/commands/fun/whois.ts @@ -37,7 +37,10 @@ const registry: {[id: string]: string} = { "367439475153829892": "A weeb.", "760375501775700038": "˙qǝǝʍ ∀", "389178357302034442": "In his dreams, he is the star. its him. <:itsMe:808174425253871657>", - "606395763404046349": "Me." + "606395763404046349": "Me.", + "237359961842253835": "Good question.", + "689538764950994990": + "The slayer of memes, a vigilante of the voidborn, and the self-proclaimed prophet of Xereptheí.\n> And thus, I shall remain dormant once more. For when judgement day arrives, those whose names are sung shall pierce the heavens." }; export default new NamedCommand({ @@ -59,7 +62,7 @@ export default new NamedCommand({ const id = user.id; if (id in registry) { - send(`\`${user.username}\` - ${registry[id]}`); + send(registry[id]); } else { send(`\`${user.tag}\` hasn't been added to the registry yet!`); } @@ -72,7 +75,7 @@ export default new NamedCommand({ if (typeof member !== "string") { if (member.id in registry) { - send(`\`${member.nickname ?? member.user.username}\` - ${registry[member.id]}`); + send(registry[member.id]); } else { send(`\`${member.nickname ?? member.user.username}\` hasn't been added to the registry yet!`); }