Noop Command

This commit is contained in:
Dragon Fire
2021-03-27 11:09:42 -04:00
parent e80531bb5e
commit 46b3b05ed2
2 changed files with 18 additions and 1 deletions
+17
View File
@@ -0,0 +1,17 @@
const Command = require('../../structures/Command');
module.exports = class NoopCommand extends Command {
constructor(client) {
super(client, {
name: 'noop',
aliases: ['no-op', 'nop'],
group: 'other',
memberName: 'noop',
description: 'Does nothing.'
});
}
run() {
return;
}
};