From 83a5fdee8d819e65c880fa8c5334ac7686ea06a6 Mon Sep 17 00:00:00 2001 From: smyalygames Date: Sun, 15 Jan 2023 12:31:43 +0000 Subject: [PATCH] fix(arabot): change class name --- src/commands/roles/vegan.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/roles/vegan.ts b/src/commands/roles/vegan.ts index ba5c8bc..d91c6d8 100644 --- a/src/commands/roles/vegan.ts +++ b/src/commands/roles/vegan.ts @@ -21,7 +21,7 @@ import { Args, Command, RegisterBehavior } from '@sapphire/framework'; import type { GuildMember, Message } from 'discord.js'; import IDs from '../../utils/ids'; -class VegCuriousCommand extends Command { +class VeganCommand extends Command { public constructor(context: Command.Context, options: Command.Options) { super(context, { ...options, @@ -186,4 +186,4 @@ class VegCuriousCommand extends Command { } } -export default VegCuriousCommand; +export default VeganCommand;