From 6495c44c6850876fc28bad0922be4b6c60d49948 Mon Sep 17 00:00:00 2001 From: Kevin Kendzia Date: Sat, 23 Apr 2022 17:55:17 +0200 Subject: add /next command as alias for /skip (#629) Co-authored-by: Max Isom --- src/commands/next.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/commands/next.ts (limited to 'src/commands') diff --git a/src/commands/next.ts b/src/commands/next.ts new file mode 100644 index 0000000..a9796c0 --- /dev/null +++ b/src/commands/next.ts @@ -0,0 +1,10 @@ +import {injectable} from 'inversify'; +import Skip from './skip.js'; +import {SlashCommandBuilder} from '@discordjs/builders'; + +@injectable() +export default class extends Skip { + public readonly slashCommand = new SlashCommandBuilder() + .setName('next') + .setDescription('skip to the next song'); +} -- cgit v1.2.3