mirror of
https://github.com/Grasscutters/Cultivation.git
synced 2025-12-12 15:14:35 +01:00
Fix not loading old configs from correct dir
This commit is contained in:
@@ -182,7 +182,7 @@ async function readConfigFile() {
|
|||||||
const cfg = <Configuration>JSON.parse(raw)
|
const cfg = <Configuration>JSON.parse(raw)
|
||||||
// Switch file to config-specified profile
|
// Switch file to config-specified profile
|
||||||
let pf = cfg['profile']
|
let pf = cfg['profile']
|
||||||
if (pf != 'default') {
|
if (pf && pf != 'default') {
|
||||||
const pff = pf
|
const pff = pf
|
||||||
pf = 'profiles/' + pff + '.json'
|
pf = 'profiles/' + pff + '.json'
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Reference in New Issue
Block a user