summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhaykam821 <24855774+haykam821@users.noreply.github.com>2020-07-09 12:17:59 -0400
committerhaykam821 <24855774+haykam821@users.noreply.github.com>2020-07-09 12:17:59 -0400
commit90d45d2abf65906066efb8d57eddffd5c931c2fd (patch)
tree945dcf4d4f598435aa1343951808f009334e1ae0
parentcd57e354feb0f01369bc35f6c48f9b893786880d (diff)
downloadMultiMC-90d45d2abf65906066efb8d57eddffd5c931c2fd.tar
MultiMC-90d45d2abf65906066efb8d57eddffd5c931c2fd.tar.gz
MultiMC-90d45d2abf65906066efb8d57eddffd5c931c2fd.tar.lz
MultiMC-90d45d2abf65906066efb8d57eddffd5c931c2fd.tar.xz
MultiMC-90d45d2abf65906066efb8d57eddffd5c931c2fd.zip
Fix Fabric loader error messages being reused for intermediary mappings
-rw-r--r--application/pages/instance/VersionPage.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/application/pages/instance/VersionPage.cpp b/application/pages/instance/VersionPage.cpp
index c4a7cb44..f2d19f25 100644
--- a/application/pages/instance/VersionPage.cpp
+++ b/application/pages/instance/VersionPage.cpp
@@ -357,8 +357,8 @@ void VersionPage::on_actionChange_version_triggered()
VersionSelectDialog vselect(list.get(), tr("Change %1 version").arg(name), this);
if (uid == "net.fabricmc.intermediary")
{
- vselect.setEmptyString(tr("No Fabric Loader versions are currently available."));
- vselect.setEmptyErrorString(tr("Couldn't load or download the Fabric Loader version lists!"));
+ vselect.setEmptyString(tr("No intermediary mappings versions are currently available."));
+ vselect.setEmptyErrorString(tr("Couldn't load or download the intermediary mappings version lists!"));
vselect.setExactFilter(BaseVersionList::ParentVersionRole, m_profile->getComponentVersion("net.minecraft"));
}
auto currentVersion = patch->getVersion();