fix PronounDB crash with new profile in dms, force start dependencies

This commit is contained in:
Vendicated 2022-11-12 15:09:02 +01:00
parent b48c8d8a4a
commit 81edc14070
No known key found for this signature in database
GPG key ID: EC781ADFB93EFFA3
8 changed files with 80 additions and 24 deletions

View file

@ -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[];