forked from embee/woomy
songName no longer causes problems
This commit is contained in:
parent
4d97bc1ad0
commit
3dd36604e5
1 changed files with 2 additions and 1 deletions
|
@ -35,7 +35,6 @@ module.exports.run = (client, message, args, level) => {
|
|||
|
||||
const oldPosition = +args[0]
|
||||
const newPosition = +args[1]
|
||||
const songName = queue[oldPosition].video.title
|
||||
|
||||
if (isNaN(oldPosition) === true) {
|
||||
return message.channel.send('That isn\'t a number! You need to tell me the songs position in the queue (1, 2, etc.)')
|
||||
|
@ -61,6 +60,8 @@ module.exports.run = (client, message, args, level) => {
|
|||
return message.channel.send('This number is too high!')
|
||||
}
|
||||
|
||||
const songName = queue[oldPosition].video.title
|
||||
|
||||
queue.splice(newPosition, 0, queue.splice(oldPosition, 1)[0])
|
||||
|
||||
message.channel.send(`Moved **${songName}** from position \`${oldPosition}\` to \`${newPosition}\``)
|
||||
|
|
Loading…
Reference in a new issue