Fixed help command

This commit is contained in:
WatDuhHekBro 2021-04-12 12:46:48 -05:00
parent 9bf44c160a
commit 793822f3d0
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
import {
Command,
RestCommand,
NamedCommand,
CHANNEL_TYPE,
getPermissionName,
@ -51,7 +51,7 @@ export default new NamedCommand({
.setColor(EMBED_COLOR);
});
},
any: new Command({
any: new RestCommand({
async run({send, args}) {
const resultingBlob = await getCommandInfo(args);
if (typeof resultingBlob === "string") return send(resultingBlob);