fix oopsie

This commit is contained in:
Vendicated 2023-04-03 02:36:54 +02:00
parent ae80749dd8
commit a7e2fb48ba
No known key found for this signature in database
GPG Key ID: A1DC0CFB5615D905
1 changed files with 0 additions and 2 deletions

View File

@ -65,7 +65,5 @@ export function getSettingStore<T = any>(group: string, name: string): Setting<T
* getSettingStore but lazy
*/
export function getSettingStoreLazy<T = any>(group: string, name: string) {
if (!Settings.plugins.SettingsStoreAPI.enabled) throw new Error("Cannot use SettingsStoreAPI without setting as dependency.");
return proxyLazy(() => getSettingStore<T>(group, name));
}