mojira.dev
MC-305599

Starting from 26.1-snapshot-1, the game version number no longer includes the launcher version (such as HMCL, PCL, etc.)

The JSON of 26.1-snapshot-1 still contains -Dminecraft.launcher.brand=${launcher_name}, and HMCL's launch parameters also include it, so this should be a bug in MC itself.

Environment

Windows 11, version 25H2 (26200.7462) / LibericaJDK-25-Full

Attachments

Comments 4

25w46a_unobfuscated

image-20260109-182619.png

1.21.11-rc3

image-20260109-182630.png

26.1-snapshot-1

image-20260109-182637.png

Code Before 26.1:

String s = "Minecraft " + SharedConstants.getCurrentVersion().name();
if (this.minecraft.isDemo()) {
    s = s + " Demo";
} else {
    s = s + ("release".equalsIgnoreCase(this.minecraft.getVersionType()) ? "" : "/" + this.minecraft.getVersionType());
}

if (Minecraft.checkModStatus().shouldReportAsModified()) {
    s = s + I18n.get("menu.modded");
}

Code After 26.1:

String versionString = "Minecraft " + SharedConstants.getCurrentVersion().name();
if (this.minecraft.isDemo()) {
    versionString = versionString + " Demo";
}

if (Minecraft.checkModStatus().shouldReportAsModified()) {
    versionString = versionString + I18n.get("menu.modded");
}

The else statement has disappeared.

Also, to clarify, the command-line argument referenced for displaying title here was --versionType, not -Dminecraft.launcher.brand.

Thank you for your report!
After consideration, the issue is being closed as Working as Intended.

Please note, that mechanics of the game may change between updates.
Things such as graphics, sounds, world creation, biomes, redstone, villagers, and animals may not work the same in current versions.

Full Version HistorySnapshot Version HistoryThe official Minecraft feedback site

Quick Links:
📓 Bug Tracker Guidelines – 💬 Community Support – 📧 Mojang Support (Technical Issues) – 📧 Microsoft Support (Account Issues)
📓 Project Summary – ✍️ Feedback and Suggestions – 📖 Game Wiki

lokins

(Unassigned)

Plausible

(Unassigned)

26.1 Snapshot 2

Retrieved