Fix Minecraft version not appearing in status bar
This commit is contained in:
parent
286f82cc99
commit
06bf7b0f31
1 changed files with 9 additions and 1 deletions
|
@ -826,8 +826,16 @@ QString MinecraftInstance::getStatusbarDescription()
|
||||||
traits.append(tr("broken"));
|
traits.append(tr("broken"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QString mcVersion = m_components->getComponentVersion("net.minecraft");
|
||||||
|
if (mcVersion.isEmpty())
|
||||||
|
{
|
||||||
|
// Load component info if needed
|
||||||
|
m_components->reload(Net::Mode::Offline);
|
||||||
|
mcVersion = m_components->getComponentVersion("net.minecraft");
|
||||||
|
}
|
||||||
|
|
||||||
QString description;
|
QString description;
|
||||||
description.append(tr("Minecraft %1 (%2)").arg(m_components->getComponentVersion("net.minecraft")).arg(typeName()));
|
description.append(tr("Minecraft %1 (%2)").arg(mcVersion).arg(typeName()));
|
||||||
if(m_settings->get("ShowGameTime").toBool())
|
if(m_settings->get("ShowGameTime").toBool())
|
||||||
{
|
{
|
||||||
if (lastTimePlayed() > 0) {
|
if (lastTimePlayed() > 0) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue