More uniform group names

This commit is contained in:
Dragon Fire
2020-04-09 14:37:24 -04:00
parent 35970740e3
commit 2bf570f3d2
139 changed files with 154 additions and 154 deletions
+24
View File
@@ -0,0 +1,24 @@
const Command = require('../../structures/Command');
module.exports = class LowercaseCommand extends Command {
constructor(client) {
super(client, {
name: 'lowercase',
aliases: ['to-lowercase'],
group: 'edit-text',
memberName: 'lowercase',
description: 'Converts text to lowercase.',
args: [
{
key: 'text',
prompt: 'What text would you like to convert to lowercase?',
type: 'string'
}
]
});
}
run(msg, { text }) {
return msg.say(text.toLowerCase());
}
};