Premiere version du launcher Merci de faire des rapports si vous trouvez des fautes ou erreur ou bug Discord https://discord.gg/Pp7XTNuVqv
17 lines
562 B
JavaScript
17 lines
562 B
JavaScript
const { DistributionAPI } = require('helios-core/common')
|
|
|
|
const ConfigManager = require('./configmanager')
|
|
|
|
// Old WesterosCraft url.
|
|
// exports.REMOTE_DISTRO_URL = 'http://mc.westeroscraft.com/WesterosCraftLauncher/distribution.json'
|
|
exports.REMOTE_DISTRO_URL = 'https://wordsmp.rh-web.fr/Nebula/distribution.json'
|
|
|
|
const api = new DistributionAPI(
|
|
ConfigManager.getLauncherDirectory(),
|
|
null, // Injected forcefully by the preloader.
|
|
null, // Injected forcefully by the preloader.
|
|
exports.REMOTE_DISTRO_URL,
|
|
false
|
|
)
|
|
|
|
exports.DistroAPI = api |