added 5.0 changelog

This commit is contained in:
wukko
2023-02-13 21:56:52 +06:00
parent 7911a35eb6
commit c57d16b615
5 changed files with 15 additions and 10 deletions

View File

@@ -8,6 +8,7 @@ let loc = {}
export function loadLoc() {
fs.readdir(locPath, (err, files) => {
if (err) return false;
files.forEach(file => {
loc[file.split('.')[0]] = loadJson(`${locPath}/${file}`)
});