diff --git a/commands/restart.js b/commands/restart.js index 7539e089..e7ad8d25 100644 --- a/commands/restart.js +++ b/commands/restart.js @@ -9,7 +9,7 @@ module.exports = { async execute(msg, args, client, Discord, prefix, command) { client.destroy() const MusicClient = require('../struct/client.js'); - const client = new MusicClient({}); + const newClient = new MusicClient({}); msg.channel.send('restarted!'); } };