diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-02-03 21:12:19 -0500 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-02-03 21:12:19 -0500 |
commit | 821ed93ccf55e4f32f6f25f502bce1e5b161d356 (patch) | |
tree | 42d0547f589134a6e549975f2da199f943e7b3b9 /src/commands/info/guildInfo.ts | |
parent | 75eb731d077638472abc2f2423f6759a110bcda6 (diff) | |
download | tanzanite-821ed93ccf55e4f32f6f25f502bce1e5b161d356.tar.gz tanzanite-821ed93ccf55e4f32f6f25f502bce1e5b161d356.tar.bz2 tanzanite-821ed93ccf55e4f32f6f25f502bce1e5b161d356.zip |
add bot info to user info command
Diffstat (limited to 'src/commands/info/guildInfo.ts')
-rw-r--r-- | src/commands/info/guildInfo.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commands/info/guildInfo.ts b/src/commands/info/guildInfo.ts index 0aabb70..55fb0b2 100644 --- a/src/commands/info/guildInfo.ts +++ b/src/commands/info/guildInfo.ts @@ -129,10 +129,10 @@ export default class GuildInfoCommand extends BushCommand { ); guildSecurity.push( - `**Verification Level**: ${BushGuildVerificationLevel[guild.verificationLevel]}`, + `**Verification Level:** ${BushGuildVerificationLevel[guild.verificationLevel]}`, `**Explicit Content Filter:** ${BushGuildExplicitContentFilter[guild.explicitContentFilter]}`, `**Default Message Notifications:** ${BushGuildDefaultMessageNotifications[guild.defaultMessageNotifications]}`, - `**2FA Required**: ${guild.mfaLevel === GuildMFALevel.Elevated ? 'True' : 'False'}` + `**2FA Required:** ${guild.mfaLevel === GuildMFALevel.Elevated ? 'True' : 'False'}` ); } else { guildAbout.push( |