mirror of
https://github.com/BluemediaGER/muse.git
synced 2024-11-09 19:55:28 +01:00
Consistent verb tense
This commit is contained in:
parent
e7d0c96f8a
commit
967de2fd91
|
@ -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;
|
||||
|
||||
|
|
|
@ -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')
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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')
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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]')
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue