From 4671fac123d984b7460d7fc37d631fbdc4f15791 Mon Sep 17 00:00:00 2001 From: Jacob Nguyen <76754747+jacoobes@users.noreply.github.com> Date: Tue, 29 Mar 2022 14:14:14 -0500 Subject: [PATCH] fix(errors.ts) syntax error enum fix --- src/handler/structures/errors.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/handler/structures/errors.ts b/src/handler/structures/errors.ts index 0a2ac36..c29128e 100644 --- a/src/handler/structures/errors.ts +++ b/src/handler/structures/errors.ts @@ -2,6 +2,6 @@ export enum SernError { RESERVED_EVENT = 'Cannot register the reserved ready event. Please use the init property.', NO_ALIAS = 'You cannot provide an array with elements to a slash command.', NOT_VALID_MOD_TYPE = 'Detected an unknown module type', - UNDEFINED_MODULE = `A module could not be detected at` + UNDEFINED_MODULE = `A module could not be detected at`, MISMATCH_MODULE_TYPE = `A module type mismatched with event emitted!` }