aboutsummaryrefslogtreecommitdiff
path: root/src/commands/skip.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/skip.ts')
-rw-r--r--src/commands/skip.ts7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/commands/skip.ts b/src/commands/skip.ts
index cc5c1c4..1eb23a0 100644
--- a/src/commands/skip.ts
+++ b/src/commands/skip.ts
@@ -25,19 +25,18 @@ export default class implements Command {
public async execute(msg: Message, _: string []): Promise<void> {
const queue = this.queueManager.get(msg.guild!.id);
+ const player = this.playerManager.get(msg.guild!.id);
try {
queue.forward();
+ player.resetPosition();
if (queue.isEmpty() && !queue.getCurrent()) {
- this.playerManager.get(msg.guild!.id).disconnect();
- } else {
- await this.playerManager.get(msg.guild!.id).play();
+ player.disconnect();
}
await msg.channel.send('keep \'er movin\'');
} catch (_) {
- console.log(_);
await msg.channel.send('no song to skip to');
}
}