diff --git a/config.js b/config.js index 964b2d3..8bfb35c 100644 --- a/config.js +++ b/config.js @@ -61,9 +61,9 @@ var config = { top_right: process.env.SPONSOR_TOP_RIGHT }, endpoints: { - textures_url: "https://textures.minecraft.net/texture/", - session_url: "https://sessionserver.mojang.com/session/minecraft/profile/" + textures_url: process.env.TEXTURES_ENDPOINT || "https://textures.minecraft.net/texture/", + session_url: process.env.SESSION_ENDPOINT || "https://sessionserver.mojang.com/session/minecraft/profile/" } }; -module.exports = config; \ No newline at end of file +module.exports = config;