From 47f58a9efa1c49a9e049c8ba07db200f6ed28ad7 Mon Sep 17 00:00:00 2001 From: Jacob Nguyen <76754747+jacoobes@users.noreply.github.com> Date: Thu, 18 May 2023 20:03:53 -0500 Subject: [PATCH] revert: internal name --- src/handler/commands.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/handler/commands.ts b/src/handler/commands.ts index 07fbaff..4a09c7d 100644 --- a/src/handler/commands.ts +++ b/src/handler/commands.ts @@ -61,7 +61,7 @@ export function discordEvent(mod: { }); } -function preparePlugins(c: Module) { +function prepareClassPlugins(c: Module) { const [onEvent, initPlugins] = partitionPlugins(c.plugins); c.plugins = initPlugins as InitPlugin[]; c.onEvent = onEvent as ControlPlugin[]; @@ -83,7 +83,7 @@ export abstract class CommandExecutable