fix(arabot): fix class naming

This commit is contained in:
Anthony 2023-01-19 18:28:32 +00:00
parent 479db1a1c6
commit 7127d1dfe8

View File

@ -24,7 +24,7 @@ import { Args, Command, RegisterBehavior } from '@sapphire/framework';
import type { Message } from 'discord.js'; import type { Message } from 'discord.js';
import { ChannelType } from 'discord.js'; import { ChannelType } from 'discord.js';
class AnonymousCommand extends Command { class MoveAllCommand extends Command {
public constructor(context: Command.Context, options: Command.Options) { public constructor(context: Command.Context, options: Command.Options) {
super(context, { super(context, {
...options, ...options,
@ -179,4 +179,4 @@ class AnonymousCommand extends Command {
} }
} }
export default AnonymousCommand; export default MoveAllCommand;