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
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 History – Snapshot Version History – The 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
25w46a_unobfuscated
1.21.11-rc3
26.1-snapshot-1