From 81edc1407071c6c0328f40a1ee487ea0388b9a7e Mon Sep 17 00:00:00 2001 From: Vendicated Date: Sat, 12 Nov 2022 15:09:02 +0100 Subject: fix PronounDB crash with new profile in dms, force start dependencies --- src/utils/types.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/utils') diff --git a/src/utils/types.ts b/src/utils/types.ts index dd0a9c5..30c603f 100644 --- a/src/utils/types.ts +++ b/src/utils/types.ts @@ -49,9 +49,10 @@ export interface PluginAuthor { export interface Plugin extends PluginDef { patches?: Patch[]; started: boolean; + isDependency?: boolean; } -interface PluginDef { +export interface PluginDef { name: string; description: string; authors: PluginAuthor[]; -- cgit