diff --git a/src/core/plugins/args.ts b/src/core/plugins/args.ts index baa48f1..46b9c67 100644 --- a/src/core/plugins/args.ts +++ b/src/core/plugins/args.ts @@ -3,7 +3,7 @@ import type { PluginType } from '../structures/enums'; import type { Module } from '../../types/module'; import type { Processed } from '../../types/handler'; import { EventType } from '../structures/enums'; -import { CommandArgsMatrix, EventArgsMatrix } from '../../entrypoints/djs'; +import { CommandArgsMatrix, EventArgsMatrix } from '../../types/module'; export interface InitArgs> { module: T; diff --git a/src/core/plugins/createPlugin.ts b/src/core/plugins/createPlugin.ts index 8578285..b5022c9 100644 --- a/src/core/plugins/createPlugin.ts +++ b/src/core/plugins/createPlugin.ts @@ -2,7 +2,6 @@ import { CommandType, EventType, PluginType } from '../structures'; import type { Plugin, PluginResult } from '../../types/plugin'; import type { CommandArgs, EventArgs } from './args'; import type { ClientEvents } from 'discord.js'; -export const guayin = Symbol('twice<3'); export function makePlugin( type: PluginType, @@ -10,8 +9,7 @@ export function makePlugin( ): Plugin { return { type, - execute, - [guayin]: undefined, + execute } as Plugin; } /**