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

Contents of /trunk/commands/mvsnippet.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: 1131 byte(s)
Added base commands
1 const MessageEmbed = require("../src/MessageEmbed");
2
3 module.exports = {
4 async handle(msg, cm) {
5 if (cm.args[1] === undefined) {
6 await msg.reply({
7 embeds: [
8 new MessageEmbed()
9 .setColor('#f14a60')
10 .setDescription('This command requires at least 2 arguments.')
11 ]
12 });
13
14 return;
15 }
16
17 let snippet = cm.snippetManager.find(cm.args[0]);
18
19 if (snippet) {
20 cm.snippetManager.delete(snippet.name);
21 cm.snippetManager.create(cm.args[1], snippet.content);
22
23 await msg.reply({
24 embeds: [
25 new MessageEmbed()
26 .setDescription('Snippet renamed successfully!')
27 ]
28 });
29 }
30 else {
31 await msg.reply({
32 embeds: [
33 new MessageEmbed()
34 .setColor('#f14a60')
35 .setDescription('No snippet was found with that name.')
36 ]
37 });
38 }
39 }
40 };

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26