diff options
Diffstat (limited to 'src/commands')
| -rw-r--r-- | src/commands/move.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commands/move.ts b/src/commands/move.ts index 91a3957..731e0da 100644 --- a/src/commands/move.ts +++ b/src/commands/move.ts @@ -19,7 +19,7 @@ export default class implements Command { option.setName('to') .setDescription('position to move the song to') .setRequired(true)); - + private readonly playerManager: PlayerManager; constructor(@inject(TYPES.Managers.Player) playerManager: PlayerManager) { @@ -37,7 +37,7 @@ export default class implements Command { } if (to < 1) { - throw new Error('position must be at least 1') + throw new Error('position must be at least 1'); } player.move(from, to); |
