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;
}
};
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "xiao",
"version": "134.1.1",
"version": "134.2.0",
"description": "Your personal server companion.",
"main": "Xiao.js",
"scripts": {