From 46b3b05ed23f3cebb21b4507cc24803f7033b4eb Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 27 Mar 2021 11:09:42 -0400 Subject: [PATCH] Noop Command --- commands/other/noop.js | 17 +++++++++++++++++ package.json | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 commands/other/noop.js diff --git a/commands/other/noop.js b/commands/other/noop.js new file mode 100644 index 00000000..5551e3ad --- /dev/null +++ b/commands/other/noop.js @@ -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; + } +}; diff --git a/package.json b/package.json index a0b75d5e..f022d403 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "134.1.1", + "version": "134.2.0", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {