Skip to content

Commit

Permalink
commands: update descriptions
Browse files Browse the repository at this point in the history
Signed-off-by: TRACTION <19631364+iamtraction@users.noreply.github.com>
  • Loading branch information
iamtraction committed May 10, 2023
1 parent 07327fa commit 1ed1e67
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion src/commands/config/farewell.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion src/commands/config/gamification.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 ],
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/commands/config/greeting.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
4 changes: 2 additions & 2 deletions src/commands/config/liveStreams.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 ],
Expand Down
2 changes: 1 addition & 1 deletion src/commands/config/logs/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 ],
},
],
Expand Down
2 changes: 1 addition & 1 deletion src/commands/config/logs/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 ],
},
],
Expand Down
4 changes: 2 additions & 2 deletions src/commands/config/reports.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 ],
},
],
Expand Down
2 changes: 1 addition & 1 deletion src/commands/config/starboard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 ],
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/commands/config/suggestions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 ],
},
],
Expand Down
2 changes: 1 addition & 1 deletion src/commands/config/verification.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
6 changes: 3 additions & 3 deletions src/commands/user/infractions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
{
Expand Down

0 comments on commit 1ed1e67

Please sign in to comment.