diff --git a/src/commands/config/farewell.ts b/src/commands/config/farewell.ts index b437d0bdf..6b78f8854 100644 --- a/src/commands/config/farewell.ts +++ b/src/commands/config/farewell.ts @@ -22,7 +22,7 @@ class FarewellCommand extends Command { { type: ApplicationCommandOptionType.String, name: "message", - description: "The farewell message.", + description: "The custom farewell message.", }, { type: ApplicationCommandOptionType.Integer, diff --git a/src/commands/config/gamification.ts b/src/commands/config/gamification.ts index 17cd4dda3..089324aea 100644 --- a/src/commands/config/gamification.ts +++ b/src/commands/config/gamification.ts @@ -23,7 +23,7 @@ class GamificationCommand extends Command { { type: ApplicationCommandOptionType.Channel, name: "channel", - description: "The channel where the level up messages should be sent.", + description: "The channel where the level up messages will be sent.", channel_types: [ ChannelType.GuildText ], }, { diff --git a/src/commands/config/greeting.ts b/src/commands/config/greeting.ts index a77063b6c..6ee3b2300 100644 --- a/src/commands/config/greeting.ts +++ b/src/commands/config/greeting.ts @@ -22,7 +22,7 @@ class GreetingCommand extends Command { { type: ApplicationCommandOptionType.String, name: "message", - description: "The greeting message.", + description: "The custom greeting message.", }, { type: ApplicationCommandOptionType.Integer, diff --git a/src/commands/config/liveStreams.ts b/src/commands/config/liveStreams.ts index fbe983459..e9771d77c 100644 --- a/src/commands/config/liveStreams.ts +++ b/src/commands/config/liveStreams.ts @@ -23,13 +23,13 @@ class LiveStreamsCommand extends Command { { type: ApplicationCommandOptionType.Channel, name: "channel", - description: "The channel where you want to post the notification.", + description: "The channel where the notifications will be sent.", channel_types: [ ChannelType.GuildText ], }, { type: ApplicationCommandOptionType.String, name: "message", - description: "A custom message to show with the live notification.", + description: "The custom message for notification.", }, ], userPermissions: [ PermissionFlagsBits.ManageGuild ], diff --git a/src/commands/config/logs/mod.ts b/src/commands/config/logs/mod.ts index 33fecd3f5..7be821ad4 100644 --- a/src/commands/config/logs/mod.ts +++ b/src/commands/config/logs/mod.ts @@ -16,7 +16,7 @@ class LogModCommand extends Command { { type: ApplicationCommandOptionType.Channel, name: "channel", - description: "The channel where moderation logs should be sent.", + description: "The channel where moderation events will be logged.", channel_types: [ ChannelType.GuildText ], }, ], diff --git a/src/commands/config/logs/server.ts b/src/commands/config/logs/server.ts index f64d6a9e9..38c895981 100644 --- a/src/commands/config/logs/server.ts +++ b/src/commands/config/logs/server.ts @@ -16,7 +16,7 @@ class LogServerCommand extends Command { { type: ApplicationCommandOptionType.Channel, name: "channel", - description: "The channel where server logs should be sent.", + description: "The channel where server events will be logged.", channel_types: [ ChannelType.GuildText ], }, ], diff --git a/src/commands/config/reports.ts b/src/commands/config/reports.ts index 470569859..34a881e4e 100644 --- a/src/commands/config/reports.ts +++ b/src/commands/config/reports.ts @@ -11,12 +11,12 @@ class ReportsCommand extends Command { constructor() { super({ name: "reports", - description: "Configure reports in the server.", + description: "Configure user reports in the server.", options: [ { type: ApplicationCommandOptionType.Channel, name: "channel", - description: "The channel where reports should be sent.", + description: "The channel where user reports will be sent.", channel_types: [ ChannelType.GuildText ], }, ], diff --git a/src/commands/config/starboard.ts b/src/commands/config/starboard.ts index 7f828c4e0..85083e655 100644 --- a/src/commands/config/starboard.ts +++ b/src/commands/config/starboard.ts @@ -16,7 +16,7 @@ class StarboardCommand extends Command { { type: ApplicationCommandOptionType.Channel, name: "channel", - description: "The channel where starred messages should be sent.", + description: "The channel where starred messages will be logged.", channel_types: [ ChannelType.GuildText ], }, { diff --git a/src/commands/config/suggestions.ts b/src/commands/config/suggestions.ts index e4b200193..c4a4bfd34 100644 --- a/src/commands/config/suggestions.ts +++ b/src/commands/config/suggestions.ts @@ -16,7 +16,7 @@ class SuggestionsCommand extends Command { { type: ApplicationCommandOptionType.Channel, name: "channel", - description: "The channel where suggestions should be sent.", + description: "The channel where suggestions will be sent.", channel_types: [ ChannelType.GuildText ], }, ], diff --git a/src/commands/config/verification.ts b/src/commands/config/verification.ts index 73600dd74..823722d59 100644 --- a/src/commands/config/verification.ts +++ b/src/commands/config/verification.ts @@ -17,7 +17,7 @@ class VerificationCommand extends Command { { type: ApplicationCommandOptionType.Role, name: "role", - description: "The role that should be assigned to verified users.", + description: "The role users are assigned when are verified.", }, { type: ApplicationCommandOptionType.String, diff --git a/src/commands/user/infractions.ts b/src/commands/user/infractions.ts index 430421347..0ac1cdbb6 100644 --- a/src/commands/user/infractions.ts +++ b/src/commands/user/infractions.ts @@ -18,19 +18,19 @@ class UserInfractionsCommand extends Command { { type: ApplicationCommandOptionType.Integer, name: "timeout", - description: "Number of violations after which the user is timed out.", + description: "Number of violations after which a user is timed out.", min_value: 1, }, { type: ApplicationCommandOptionType.Integer, name: "kick", - description: "Number of violations after which the user is kicked.", + description: "Number of violations after which a user is kicked.", min_value: 1, }, { type: ApplicationCommandOptionType.Integer, name: "ban", - description: "Number of violations after which the user is banned.", + description: "Number of violations after which a user is banned.", min_value: 1, }, {