trying to see why it dosent work on a sepcific server

This commit is contained in:
Supositware 2019-01-12 20:57:52 +01:00
parent cfc343e5dc
commit 8a3bb73af6

View file

@ -28,6 +28,7 @@ class PruneCommand extends Command {
}
async exec(message,args) {
try {
let slowmodeNumber = args.slowmodeNumber;
let realtime = args.realtime;
@ -48,6 +49,10 @@ class PruneCommand extends Command {
return message.channel.send('Slowmode have been disabled!');
return message.channel.send(`Slowmode have been set to ${slowmodeNumber} seconds!`);
}
} catch (err) {
console.error(err);
}
}
}