diff options
author | Vendicated <vendicated@riseup.net> | 2022-08-31 23:04:18 +0200 |
---|---|---|
committer | Vendicated <vendicated@riseup.net> | 2022-08-31 23:04:18 +0200 |
commit | 7ce37f858c0a1e09e1f6497fbd32b172cc9b3c6c (patch) | |
tree | 2a9add59fcced15e1760f752bb10040e229f84fd /src/plugins/index.ts | |
parent | b2f762fda8ec93feab123891e7c01efda00388c8 (diff) | |
download | Vencord-7ce37f858c0a1e09e1f6497fbd32b172cc9b3c6c.tar.gz Vencord-7ce37f858c0a1e09e1f6497fbd32b172cc9b3c6c.tar.bz2 Vencord-7ce37f858c0a1e09e1f6497fbd32b172cc9b3c6c.zip |
Unindent, plugins is now an object instead of []
Diffstat (limited to 'src/plugins/index.ts')
-rw-r--r-- | src/plugins/index.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/index.ts b/src/plugins/index.ts index 448d247..1a6c93d 100644 --- a/src/plugins/index.ts +++ b/src/plugins/index.ts @@ -8,7 +8,7 @@ const logger = new Logger("PluginManager", "#a6d189"); export const plugins = Plugins; export const patches = [] as Patch[]; -for (const plugin of Plugins) if (plugin.patches && Settings.plugins[plugin.name].enabled) { +for (const plugin of Object.values(Plugins)) if (plugin.patches && Settings.plugins[plugin.name].enabled) { for (const patch of plugin.patches) { patch.plugin = plugin.name; if (!Array.isArray(patch.replacement)) patch.replacement = [patch.replacement]; @@ -17,8 +17,8 @@ for (const plugin of Plugins) if (plugin.patches && Settings.plugins[plugin.name } export function startAll() { - for (const plugin of plugins) if (Settings.plugins[plugin.name].enabled) { - startPlugin(plugin); + for (const plugin in Plugins) if (Settings.plugins[plugin].enabled) { + startPlugin(Plugins[plugin]); } } |