Add playlist-limit in config command

This commit is contained in:
Thongrapee Panyapatiphan 2021-10-01 22:33:39 +07:00
parent 11eba5746d
commit 4364f459be
No known key found for this signature in database
GPG key ID: 4B08AEC7F50F1967

View file

@ -11,6 +11,7 @@ export default class implements Command {
public examples = [
['config prefix !', 'set the prefix to !'],
['config channel music-commands', 'bind the bot to the music-commands channel'],
['config playlist-limit 30', 'set the playlist song limit to 30'],
];
public async execute(msg: Message, args: string []): Promise<void> {
@ -20,7 +21,8 @@ export default class implements Command {
if (settings) {
let response = `prefix: \`${settings.prefix}\`\n`;
response += `channel: ${msg.guild!.channels.cache.get(settings.channel)!.toString()}`;
response += `channel: ${msg.guild!.channels.cache.get(settings.channel)!.toString()}\n`;
response += `playlist-limit: ${settings.playlistLimit}`;
await msg.channel.send(response);
}
@ -73,6 +75,18 @@ export default class implements Command {
break;
}
case 'playlist-limit': {
const playlistLimit = Number(args[1]);
if (!playlistLimit || playlistLimit <= 0) {
await msg.channel.send(errorMsg('please enter a valid number'));
return;
}
await Settings.update({playlistLimit}, {where: {guildId: msg.guild!.id}});
await msg.channel.send(`👍 playlist-limit updated to ${playlistLimit}`);
break;
}
default:
await msg.channel.send(errorMsg('I\'ve never met this setting in my life'));
}