Spaces around hyphen of versions range in MinecraftVersionUtil#toString()

This commit is contained in:
2025-04-05 00:14:06 +02:00
parent 9374f8d280
commit 500163d8f4
2 changed files with 2 additions and 2 deletions

View File

@@ -114,7 +114,7 @@ public class MinecraftVersionUtil {
else {
// merge
if (i - firstConsecutive > 1)
keptVersions.add(versions.get(firstConsecutive) + "-" + versions.get(i));
keptVersions.add(versions.get(firstConsecutive) + " - " + versions.get(i));
else {
keptVersions.add(versions.get(firstConsecutive));
keptVersions.add(versions.get(i));