diff options
| author | Max Isom <[email protected]> | 2021-04-23 12:30:31 -0400 |
|---|---|---|
| committer | Max Isom <[email protected]> | 2021-04-23 12:30:31 -0400 |
| commit | 5d92d4ed541df091526e8c918737cd245ea24db3 (patch) | |
| tree | 91890fa5233b78b0afd1c8135f02621f3e3da7db /src/commands | |
| parent | 531da56dd071cdedf9177fea68597a49cb5bfba4 (diff) | |
| download | muse-5d92d4ed541df091526e8c918737cd245ea24db3.tar.xz muse-5d92d4ed541df091526e8c918737cd245ea24db3.zip | |
Allow skipping multiple tracks
Diffstat (limited to 'src/commands')
| -rw-r--r-- | src/commands/skip.ts | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/src/commands/skip.ts b/src/commands/skip.ts index 677ad03..b12729b 100644 --- a/src/commands/skip.ts +++ b/src/commands/skip.ts @@ -11,7 +11,8 @@ export default class implements Command { public name = 'skip'; public aliases = ['s']; public examples = [ - ['skip', 'skips the current song'] + ['skip', 'skips the current song'], + ['skip 2', 'skips the next 2 songs'] ]; public requiresVC = true; @@ -22,14 +23,22 @@ export default class implements Command { this.playerManager = playerManager; } - public async execute(msg: Message, _: string []): Promise<void> { + public async execute(msg: Message, args: string []): Promise<void> { + let numToSkip = 1; + + if (args.length === 1) { + if (!Number.isNaN(parseInt(args[0], 10))) { + numToSkip = parseInt(args[0], 10); + } + } + const player = this.playerManager.get(msg.guild!.id); const loader = new LoadingMessage(msg.channel as TextChannel); try { await loader.start(); - await player.forward(); + await player.forward(numToSkip); await loader.stop('keep \'er movin\''); } catch (_: unknown) { |
