mirror of
https://github.com/Grasscutters/Cultivation.git
synced 2025-12-16 17:14:36 +01:00
Add download menu translations
Update download menu formatting Better error logging
This commit is contained in:
@@ -44,11 +44,16 @@ export async function getGameVersion() {
|
||||
return null
|
||||
}
|
||||
|
||||
const settings = JSON.parse(
|
||||
await invoke('read_file', {
|
||||
path: GameData + '\\StreamingAssets\\asb_settings.json',
|
||||
})
|
||||
)
|
||||
try {
|
||||
const settings = JSON.parse(
|
||||
await invoke('read_file', {
|
||||
path: GameData + '\\StreamingAssets\\asb_settings.json',
|
||||
})
|
||||
)
|
||||
} catch (e) {
|
||||
console.log(`Game config at ${path} not found or invalid. Missing game files?`)
|
||||
return 0.0
|
||||
}
|
||||
|
||||
const versionRaw = settings.variance.split('.')
|
||||
const version = {
|
||||
|
||||
@@ -10,7 +10,7 @@ export async function toggleEncryption(path: string) {
|
||||
})
|
||||
)
|
||||
} catch (e) {
|
||||
console.log(`Server config at ${path} not found or invalid`)
|
||||
console.log(`Server config at ${path} not found or invalid. Be sure to run the server at least once to generate it`)
|
||||
return
|
||||
}
|
||||
|
||||
@@ -36,7 +36,7 @@ export async function encryptionEnabled(path: string) {
|
||||
})
|
||||
)
|
||||
} catch (e) {
|
||||
console.log(`Server config at ${path} not found or invalid`)
|
||||
console.log(`Server config at ${path} not found or invalid. Be sure to run the server at least once to generate it`)
|
||||
return false
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user