From a7eb89d0e4f4be8b047bff1fc12fc194eb2e2e48 Mon Sep 17 00:00:00 2001 From: Manuel Ruwe Date: Sun, 18 Dec 2022 12:30:42 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20Rename=20skip=20command=20?= =?UTF-8?q?to=20next?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/commands/command.module.ts | 2 +- src/commands/{skip.command.ts => next.command.ts} | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) rename src/commands/{skip.command.ts => next.command.ts} (93%) diff --git a/src/commands/command.module.ts b/src/commands/command.module.ts index fdee065..bcc2ce9 100644 --- a/src/commands/command.module.ts +++ b/src/commands/command.module.ts @@ -10,7 +10,7 @@ import { HelpCommand } from './help.command'; import { PausePlaybackCommand } from './pause.command'; import { PlayItemCommand } from './play.comands'; import { PreviousTrackCommand } from './previous.command'; -import { SkipTrackCommand } from './skip.command'; +import { SkipTrackCommand } from './next.command'; import { StatusCommand } from './status.command'; import { StopPlaybackCommand } from './stop.command'; import { SummonCommand } from './summon.command'; diff --git a/src/commands/skip.command.ts b/src/commands/next.command.ts similarity index 93% rename from src/commands/skip.command.ts rename to src/commands/next.command.ts index 04f4708..bed2bcd 100644 --- a/src/commands/skip.command.ts +++ b/src/commands/next.command.ts @@ -6,8 +6,8 @@ import { DiscordMessageService } from '../clients/discord/discord.message.servic import { PlaybackService } from '../playback/playback.service'; @Command({ - name: 'skip', - description: 'Skip the current track', + name: 'next', + description: 'Go to the next track in the playlist', }) @UsePipes(TransformPipe) export class SkipTrackCommand implements DiscordCommand {