From 2a6973ab42a8fd47fad7e1e1b7fb17bc9bbfa2b4 Mon Sep 17 00:00:00 2001 From: plexigras Date: Sat, 17 Jun 2017 20:17:52 +0200 Subject: [PATCH] simplified autoversion fallback --- src/client/autoVersion.js | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/src/client/autoVersion.js b/src/client/autoVersion.js index 98ec4b5..061e52b 100644 --- a/src/client/autoVersion.js +++ b/src/client/autoVersion.js @@ -22,18 +22,16 @@ module.exports = function(client, options) { // The version string is interpreted by https://github.com/PrismarineJS/node-minecraft-data const brandedMinecraftVersion = response.version.name; // 1.8.9, 1.7.10 const protocolVersion = response.version.protocol;// 47, 5 - let versions = brandedMinecraftVersion.match(/((\d+\.)+\d+)/g).map(function (version) { + let versions = [brandedMinecraftVersion] + .concat(brandedMinecraftVersion.match(/((\d+\.)+\d+)/g)||[]) + .map(function (version) { return minecraft_data.versionsByMinecraftVersion["pc"][version] - }).filter(function (info) { - return info - }).sort(function (a, b) { - return b.version - a.version }) + .filter(function (info) { return info }) + .sort(function (a, b) { return b.version - a.version }) + .concat(minecraft_data.postNettyVersionsByProtocolVersion["pc"][protocolVersion]||[]) if (versions.length === 0) { - versions = minecraft_data.postNettyVersionsByProtocolVersion["pc"][protocolVersion]; - if (!versions) { - throw new Error(`unsupported/unknown protocol version: ${protocolVersion}, update minecraft-data`); - } + throw new Error(`unsupported/unknown protocol version: ${protocolVersion}, update minecraft-data`); } const minecraftVersion = versions[0].minecraftVersion;