1 |
rakin |
5 |
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 |
|
|
}; |