/[sudobot]/trunk/commands/prefix.js
ViewVC logotype

Contents of /trunk/commands/prefix.js

Parent Directory Parent Directory | Revision Log Revision Log


Revision 5 - (show annotations)
Mon Jul 29 17:28:11 2024 UTC (8 months, 1 week ago) by rakin
File MIME type: text/javascript
File size: 802 byte(s)
Added base commands
1 const MessageEmbed = require("../src/MessageEmbed");
2 const { escapeRegex } = require("../src/util");
3
4 module.exports = {
5 async handle(msg, cm) {
6 if (typeof cm.args[0] === 'undefined') {
7 await msg.reply({
8 embeds: [
9 new MessageEmbed()
10 .setColor('#f14a60')
11 .setDescription(`This command requires at least one argument.`)
12 ]
13 });
14
15 return;
16 }
17
18 let prefix = cm.args[0].trim();
19
20 app.config.set("prefix", prefix);
21 app.config.write();
22
23 await msg.reply({
24 embeds: [
25 new MessageEmbed()
26 .setDescription(`The prefix has been updated. (${escapeRegex(prefix)})`)
27 ]
28 });
29 }
30 };

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26