mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-25 03:17:38 -07:00
Fix bug
This commit is contained in:
parent
e7950263e5
commit
6161501fca
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ const langs = {
|
||||||
|
|
||||||
Object.values(langs).forEach(locale => {
|
Object.values(langs).forEach(locale => {
|
||||||
// Extend native language (Japanese)
|
// Extend native language (Japanese)
|
||||||
Object.assign(locale, native);
|
locale = Object.assign({}, native, locale);
|
||||||
});
|
});
|
||||||
|
|
||||||
module.exports = langs;
|
module.exports = langs;
|
||||||
|
|
Loading…
Reference in a new issue