don't require default language

This commit is contained in:
Mylloon 2022-07-21 17:09:47 +02:00
parent a819ed0ea8
commit 2bde673cb1
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -43,7 +43,7 @@ export default async () => {
client.commands = new Collection(); client.commands = new Collection();
client.locales = await loadLocales(client.config.default_lang); client.locales = await loadLocales();
return client; return client;
}; };