diff options
| author | Max Isom <[email protected]> | 2022-02-05 17:19:13 -0500 |
|---|---|---|
| committer | Max Isom <[email protected]> | 2022-02-05 17:19:13 -0500 |
| commit | 443e8e8cb3c9300fd916d175e0982cfd7699aeed (patch) | |
| tree | 2f1ef4338ab45d1a89e228b514976d25a434c61e /src | |
| parent | 56a469a999774c8b8683adeb59b243fdf85b14c9 (diff) | |
| parent | 4f5b806b9b3065e335429618bd17eb5dba7e4ccb (diff) | |
| download | muse-443e8e8cb3c9300fd916d175e0982cfd7699aeed.tar.xz muse-443e8e8cb3c9300fd916d175e0982cfd7699aeed.zip | |
Merge branch 'feature/slash-commands'
Diffstat (limited to 'src')
| -rw-r--r-- | src/commands/disconnect.ts | 2 | ||||
| -rw-r--r-- | src/commands/favorites.ts | 2 | ||||
| -rw-r--r-- | src/commands/pause.ts | 2 | ||||
| -rw-r--r-- | src/commands/play.ts | 1 | ||||
| -rw-r--r-- | src/commands/shuffle.ts | 2 | ||||
| -rw-r--r-- | src/commands/skip.ts | 2 | ||||
| -rw-r--r-- | src/commands/unskip.ts | 2 |
7 files changed, 6 insertions, 7 deletions
diff --git a/src/commands/disconnect.ts b/src/commands/disconnect.ts index 4df76db..fd6b984 100644 --- a/src/commands/disconnect.ts +++ b/src/commands/disconnect.ts @@ -9,7 +9,7 @@ import Command from '.'; export default class implements Command { public readonly slashCommand = new SlashCommandBuilder() .setName('disconnect') - .setDescription('pauses and disconnects player'); + .setDescription('pause and disconnect Muse'); public requiresVC = true; diff --git a/src/commands/favorites.ts b/src/commands/favorites.ts index 98f1ba9..4dbf943 100644 --- a/src/commands/favorites.ts +++ b/src/commands/favorites.ts @@ -10,7 +10,7 @@ import {prisma} from '../utils/db.js'; export default class implements Command { public readonly slashCommand = new SlashCommandBuilder() .setName('favorites') - .setDescription('adds a song to your favorites') + .setDescription('add a song to your favorites') .addSubcommand(subcommand => subcommand .setName('use') .setDescription('use a favorite') diff --git a/src/commands/pause.ts b/src/commands/pause.ts index fc98bdf..7b9d295 100644 --- a/src/commands/pause.ts +++ b/src/commands/pause.ts @@ -10,7 +10,7 @@ import Command from '.'; export default class implements Command { public readonly slashCommand = new SlashCommandBuilder() .setName('pause') - .setDescription('pauses the current song'); + .setDescription('pause the current song'); public requiresVC = true; diff --git a/src/commands/play.ts b/src/commands/play.ts index 2d2fc6d..08436c2 100644 --- a/src/commands/play.ts +++ b/src/commands/play.ts @@ -19,7 +19,6 @@ import {getMemberVoiceChannel, getMostPopularVoiceChannel} from '../utils/channe export default class implements Command { public readonly slashCommand = new SlashCommandBuilder() .setName('play') - // TODO: make sure verb tense is consistent between all command descriptions .setDescription('play a song or resume playback') .addStringOption(option => option .setName('query') diff --git a/src/commands/shuffle.ts b/src/commands/shuffle.ts index e27f1e2..819c01c 100644 --- a/src/commands/shuffle.ts +++ b/src/commands/shuffle.ts @@ -9,7 +9,7 @@ import {SlashCommandBuilder} from '@discordjs/builders'; export default class implements Command { public readonly slashCommand = new SlashCommandBuilder() .setName('shuffle') - .setDescription('shuffles the current queue'); + .setDescription('shuffle the current queue'); public requiresVC = true; diff --git a/src/commands/skip.ts b/src/commands/skip.ts index 4c51e77..a580775 100644 --- a/src/commands/skip.ts +++ b/src/commands/skip.ts @@ -10,7 +10,7 @@ import {buildPlayingMessageEmbed} from '../utils/build-embed.js'; export default class implements Command { public readonly slashCommand = new SlashCommandBuilder() .setName('skip') - .setDescription('skips the next songs') + .setDescription('skip the next songs') .addIntegerOption(option => option .setName('number') .setDescription('number of songs to skip [default: 1]') diff --git a/src/commands/unskip.ts b/src/commands/unskip.ts index 17d6489..936f4ef 100644 --- a/src/commands/unskip.ts +++ b/src/commands/unskip.ts @@ -10,7 +10,7 @@ import {buildPlayingMessageEmbed} from '../utils/build-embed.js'; export default class implements Command { public readonly slashCommand = new SlashCommandBuilder() .setName('unskip') - .setDescription('goes back in the queue by one song'); + .setDescription('go back in the queue by one song'); public requiresVC = true; |
