diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-09-07 20:48:15 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-09-07 20:48:15 -0400 |
commit | 15b6988ccffc0a21a570bee7fcb8aabe6ffe08c7 (patch) | |
tree | afd35abcc9baa1964456b3cc6b4602f325a2d161 /lib/utils/Constants.ts | |
parent | 048f99752550c6e03d1990a03cad78f3ac7d73aa (diff) | |
download | tanzanite-15b6988ccffc0a21a570bee7fcb8aabe6ffe08c7.tar.gz tanzanite-15b6988ccffc0a21a570bee7fcb8aabe6ffe08c7.tar.bz2 tanzanite-15b6988ccffc0a21a570bee7fcb8aabe6ffe08c7.zip |
fix user command
Diffstat (limited to 'lib/utils/Constants.ts')
-rw-r--r-- | lib/utils/Constants.ts | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/lib/utils/Constants.ts b/lib/utils/Constants.ts index c30d01d..dd65e28 100644 --- a/lib/utils/Constants.ts +++ b/lib/utils/Constants.ts @@ -352,14 +352,14 @@ export const mappings = deepLock({ HypeSquadOnlineHouse2: '<:hypeSquadBrilliance:848742840649646101>', HypeSquadOnlineHouse3: '<:hypeSquadBalance:848742877537370133>', PremiumEarlySupporter: '<:earlySupporter:848741030102171648>', - TeamPseudoUser: 'TeamPseudoUser', + TeamPseudoUser: '`TeamPseudoUser`', BugHunterLevel2: '<:bugHunterGold:848743283080822794>', VerifiedBot: '<:verifiedbot1:938928232667947028><:verifiedbot2:938928355707879475>', VerifiedDeveloper: '<:earlyVerifiedBotDeveloper:848741079875846174>', CertifiedModerator: '<:discordCertifiedModerator:877224285901582366>', - BotHTTPInteractions: 'BotHTTPInteractions', - Spammer: 'Spammer', - Quarantined: 'Quarantined' + BotHTTPInteractions: '`BotHTTPInteractions`', + Spammer: '`Spammer`', + Quarantined: '`Quarantined`' }, status: { @@ -370,7 +370,7 @@ export const mappings = deepLock({ streaming: '<:streaming:848937187479519242>' }, - maybeNitroDiscrims: ['1111', '2222', '3333', '4444', '5555', '6666', '6969', '7777', '8888', '9999'], + commonNitroDiscriminators: ['1111', '2222', '3333', '4444', '5555', '6666', '6969', '7777', '8888', '9999'], capes: [ /* supporter capes */ @@ -464,7 +464,11 @@ export const mappings = deepLock({ } } as const); -export const bots: Record<Snowflake, { applicationId: Snowflake }> = { +interface BotInfo { + applicationId: Snowflake; +} + +export const bots: Record<Snowflake, BotInfo> = { // MEE6#4876 '159985870458322944': { applicationId: '159985415099514880' |